Aviation Data
Airport navaids
VOR, DME, ILS and NDB navigation aids associated with an airport.
GET
/v1/aviation/airports/{id}/navaidsRequires X-API-KeyReturns 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": []
}Path parameters
idstringRequiredIATA, ICAO or internal id.
Example:
MAD