Aviation Data

Get airline

Look up a single airline by its internal id.

GET/v1/aviation/airlines/{id}Requires X-API-Key
The 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": []
}

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
Internal airline id.
Example: ba
GET /v1/aviation/airlines/{id} — Get airline | Norba API