Aviation Data

Airport navaids

VOR, DME, ILS and NDB navigation aids associated with an airport.

GET/v1/aviation/airports/{id}/navaidsRequires X-API-Key
Returns the navaids OurAirports associates with this airport — VOR, DME, ILS, NDB and combinations of them — each with its identifier, name, frequency and coordinates. Returns an empty list, not an error, when none are on file.

Request example

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

Response example

Response example
{
  "data": [
    {
      "ident": "BRA",
      "name": "Barajas",
      "type": "VOR-DME",
      "frequency_khz": 116450,
      "latitude": 40.469,
      "longitude": -3.5575
    }
  ],
  "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}/navaids — Airport navaids