Aviation Data
Get airline
Look up a single airline by its internal id.
GET
/v1/aviation/airlines/{id}Requires X-API-KeyThe single-record counterpart to the list endpoint above, addressed by Norba's internal id (typically the lowercase IATA code). For an IATA or ICAO code specifically, the two path-based lookups below skip the ambiguity entirely.
Request example
curl --request GET \
--url https://api.norba.io/v1/aviation/airlines/{id} \
--header "X-API-Key: $NORBA_KEY"Response example
Response example
{
"data": {
"id": "ba",
"name": "British Airways",
"iata_code": "BA",
"icao_code": "BAW",
"callsign": "SPEEDBIRD",
"country": "GB",
"status": "active",
"alliance": "oneworld"
},
"meta": {
"request_id": "8c2c9a5821b7dfa3"
},
"errors": []
}Path parameters
idstringRequiredInternal airline id.
Example:
ba