Airports

by Mimo

Welcome to the Airports API documentation. Here, you can find information on how to use the API.

Example Request

GET/api/airports/6523
1fetch("https://airports.mimo.dev/api/airports/6523")
2 .then((res) => res.json())
3 .then((json) => console.log(json))
4 .catch((error) => console.error(error))

Example Response

response.json
1{
2 "id": "6523",
3 "ident": "00A",
4 "type": "heliport",
5 "name": "Total RF Heliport",
6 "latitude_deg": "40.070985",
7 "longitude_deg": "-74.933689",
8 "elevation_ft": "11",
9 "continent": "NA",
10 "iso_country": "US",
11 "iso_region": "US-PA",
12 "municipality": "Bensalem",
13 "scheduled_service": "no",
14 "icao_code": null,
15 "iata_code": null,
16 "gps_code": "K00A",
17 "local_code": "00A",
18 "home_link": "https://www.penndot.pa.gov/TravelInPA/airports-pa/Pages/Total-RF-Heliport.aspx",
19 "wikipedia_link": null,
20 "keywords": null
21}