Aviation Data

Airport radio frequencies

Tower, approach, ground, ATIS and every other published radio frequency for an airport.

GET/v1/aviation/airports/{id}/frequenciesRequires X-API-Key
Returns the airport's radio frequencies — TWR, APP, GND, ATIS, CTAF, UNICOM and the rest — sourced from OurAirports' frequency data. Returns an empty list, not an error, when the loader has not populated this airport yet.

Request example

curl --request GET \
  --url https://api.norba.io/v1/aviation/airports/{id}/frequencies \
  --header "X-API-Key: $NORBA_KEY"

Response example

Response example
{
  "data": [
    {
      "type": "TWR",
      "description": "TWR 36L",
      "frequency_mhz": 118.07
    }
  ],
  "meta": {
    "request_id": "2c231a657c083214",
    "count": 1,
    "total": 1
  },
  "errors": []
}

Authorization

X-API-KeystringRequired
Opaque API key issued from the Norba dashboard. Sent on every request as the X-API-Key HTTP header. Missing or invalid keys are rejected with 401 Unauthorized.

Path parameters

idstringRequired
IATA, ICAO or internal id.
Example: MAD
GET /v1/aviation/airports/{id}/frequencies | Norba API