/data/scheduleGet Schedule
Retrieve the full processed airline schedule in Pleiades Data Standard format.
/data/scheduleAUTHGet the full processed schedule grouped by aircraft tail number.
Returns the complete airline schedule processed into the Pleiades Data Standard (PDS) format. Data is grouped by aircraft tail number, with each entry containing the aircraft's type information and its assigned flights with crew, passenger, and timing details.
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
airline | string | Required | Airline code (e.g. |
force_refresh | boolean= false | Optional | Bypass the 5-minute server-side cache. |
Example Request
{
"airline": "QF",
"force_refresh": false
}Response
{
"data": {
"VH-OQA": {
"aircraft_icao": "B738",
"aircraft_version": "",
"aircraft_config": "",
"flights": [
{
"flightID": "QF401_2026-04-07T08:30:00Z",
"source_flight_unique_id": 12345,
"flight_number": "QF401",
"origin_icao": "YSSY",
"destination_icao": "YMML",
"departure_datetime_utc": "2026-04-07T08:30:00Z",
"arrival_datetime_utc": "2026-04-07T10:00:00Z",
"crew_pair": "CP_001",
"crew_members": [],
"crew_base": "SYD",
"total_pax": 154,
"capacity": 176,
"load_factor": 0.875,
"status": "scheduled",
"aircraft_type": "B738",
"pairing_name": null
}
]
}
},
"crew_pairs": [
{ "id": "CP_001", "base": "SYD" }
],
"metadata": {
"source": "navblue_operational_api:airline:QF",
"loaded_at": "2026-04-07T12:00:00+00:00",
"flight_count": 142,
"maintenance_count": 0,
"crew_pair_count": 38,
"airline": "QF",
"aircraft_count": 24,
"pds_version": "0.2.0",
"pds_name": "Pleiades Data Standard"
}
}Pleiades Data Standard
PDS is Pleiades' unified data format for airline operational data. The pds_version field in metadata tracks the schema version.
Metadata Fields
flight_countintegerTotal number of flights across all aircraft.
aircraft_countintegerNumber of unique aircraft (tail numbers) in the schedule.
data_quality_warningstring | nullPresent if flights were filtered due to missing aircraft registration data.
data_sourcesobjectIndicates which upstream data sources were available (flights, rosters, pairings, bookings).