Access the latest Flight Ops Messages
This is the documentation to access the Flight Ops Message API. We have a group of volunteers who post special messages in relation to any of the Aircraft Manufacturers Test Flights. This could be flight schedules, weather, air traffic issues etc.
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.
You will need your API key to access the API Platform. You can get a API key by becoming a "Become a Aviation Data Expert!" member on Patreon.
The root URL for the API is:
GET https://aviation.flights/api?key=[API_KEY]&flightops=true
The following parameters are all required:
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": [{ "flight_ops_message": [{ "flight_ops_message_id": "12", "title": "Flight Ops Messgae Title", "message": "Flight Ops Messgae Body", "airports": "CYYZ...CYUL...KDTW", "max_altitude": "34000", "min_altitude": "4000", "expiry_date": "Feb 9, 2023 23:35 UTC", "coordinates": [ [48.55079626623113, -98.86472112237124], [46.39771492548868, -102.51218205987124], [44.84574326442325, -98.49118596612124], [46.533925177209085, -96.31589299737124], [48.55079626623113, -98.86472112237124] ] }] }] }