Skip to content

Get one airport

GET
/airports/{identifier}

Get a unique airport by its identifier.

This operation retreive additional information, including its runways and frequencies.

Parameters

Path Parameters

identifier*

Airport Identifier , can be the id, ICAO code or IATA code

Typestring
Required

Responses

The request has succeeded.

application/json
JSON
{
"id": "0000-ffff-0000-ffff",
"updatedAt": "2020-01-01T00:00:00Z",
"name": "Hartsfield–Jackson Atlanta International Airport",
"icaoCode": "KATL",
"iataCode": "ATL",
"localCode": "ATL",
"latitude": 33.6407,
"longitude": -84.4277,
"elevation": 1026,
"countryCode": "US",
"city": "Atlanta",
"state": "Georgia",
"county": "Fulton",
"continentCode": "string",
"timezone": "America/New_York",
"facilityType": "airport",
"isPrivate": false,
"isClosed": false,
"runways": [
{
"id": "0000-ffff-0000-ffff",
"updatedAt": "2020-01-01T00:00:00Z",
"name": "Runway 4/22",
"length": 3500,
"width": 75,
"isClosed": true,
"isLighted": false,
"lowEndIdent": "4",
"lowEndElevation": 50,
"lowEndHeading": 40,
"lowEndDisplacedThreshold": 50,
"lowEndLatitude": 40.7128,
"lowEndLongitude": -74.006,
"highEndIdent": "22",
"highEndElevation": 50,
"highEndHeading": 220,
"highEndDisplacedThreshold": 25,
"highEndLatitude": 40.7128,
"highEndLongitude": -74.006
}
],
"frequencies": [
{
"id": "0000-ffff-0000-ffff",
"updatedAt": "2020-01-01T00:00:00Z",
"name": "Tower Control",
"type": "Tower",
"description": "Tower Control Frequency",
"frequency": 118.83
}
]
}

Playground

Variables
Key
Value

Samples