This is the documentation to access the Aviation Flights Group myFleet API.
The API Platform is only available via a REST API, in which you have to let your application grab a URL with parameters and it returns all output in either JSON format. This makes it easy to grab the data using any Programming Language of your choice. The API will always only show 100 results at a time.
Your API key is:
The root URLs for the API is:
GET https://aviation.flights/api/myfleet
Only Aircraft in your own myFleet list will be shown in this API and it determines that based based on your own API key.
Certain Flight Activity will not show up in the API. This includes any Flight Activity that contains "Added to Database", "Spotted" and any Flights initially picked up by a Flight Tracker where Commercial use is not permitted.
For the longest time it didn't need to be done but as of February 4, 2025 there is now a temporary rate limit of one request per 5 seconds.
The following header is required on all requests:
x-api-key: The API key provided to you
The following parameters are all optional:
The following output values are returned after successful query:
The following are all error codes that can be returned with this function:
{
"status": "success",
"results": [
{
"aircraft_information": [
{
"msn": "62536",
"line_number": "7763",
"aircraft_type": "737-8 Max",
"engine_type": "",
"test_registration": "N8743K",
"delivery_registration": "N8743K",
"is_delivered": false,
"is_scrapped": false,
"is_written_off": false,
"is_test_aircraft": false,
"aircraft_url": "https://boefamily.flights/737/62536"
}
],
"flight_information": [
{
"aircraft_type": "737-8 Max",
"airline": "Southwest Airlines",
"registration": "N8743K",
"flight_activity": "Test Flight BFI-BFI",
"airports_involved": [
{
"title": "Seattle, United States (KBFI/BFI)",
"icao_code": "KBFI",
"iata_code": "BFI",
"latitude": "47.53",
"longitude": "-122.301947"
}
],
"callsign": "BOE049",
"hex": "AC07FD",
"date_time": "Jan 16 2021 16:55-19:01 UTC",
"flight_time": "3h 6m",
"special_notes": "",
"is_post_delivery": false,
"first_seen": "2021-01-16 16:55:00"
}
]
}
]
}