Aviation Data

Get airline by ICAO code

Look up an airline by its three-letter ICAO code — BAW, DLH, AAL.

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

Request example

curl --request GET \
  --url https://api.norba.io/v1/aviation/airlines/icao/{icao} \
  --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

icaostringRequired
Three-letter ICAO code.
Example: BAW
GET /v1/aviation/airlines/icao/{icao} | Norba API