v1
latestOpenAPI 3.1.02026-07-26650239.3 KBFlights
Get Flights
Search flights by various parameters.
get/v0/flights
Query parameters
vehicle_serialstring
Limit results to a specific vehicle, by serial number
Example:Skydio2-1234
takeoff_beforestring date-time
Search for Flights taken off before this timestamp. The timestamp should follow the ISO 8601 standard format.
Example:2022-05-03T03:10:52.503+00:00
takeoff_sincestring date-time
Example:2022-05-03T03:10:52.503+00:00
per_pageinteger
Number of results to return per page
page_numberinteger
Return a specific page number from results
Response
List of flights returned from GET /flights endpoint
Example response
{
"data": {
"flights": [
{
"landing": "2022-05-03T03:10:52.503+00:00",
"takeoff": "2022-05-03T03:10:52.503+00:00"
}
]
}
}