Aviation Data

Get airline by IATA code

Look up an airline when you specifically hold an IATA code.

GET/v1/aviation/airlines/iata/{iata}Requires X-API-Key
Same record and envelope as GET /v1/aviation/airlines/{id}, addressed by a path that only ever means a two-letter IATA code.

Request example

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

Response example

Response example
{
  "data": {
    "id": "ba",
    "name": "British Airways",
    "iata_code": "BA",
    "icao_code": "BAW",
    "country": "GB",
    "status": "active"
  },
  "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

iatastringRequired
Two-letter IATA code.
Example: BA
GET /v1/aviation/airlines/iata/{iata} | Norba API