Aviation Data

Airline operational status

Just the operational status — active, defunct, or unknown when the record does not say.

GET/v1/aviation/airlines/{id}/statusRequires X-API-Key
A coarse status derived from the airline's own record, for an "is this carrier defunct?" check without fetching the whole entry. Reports unknown rather than an error when the underlying record has no status recorded — this is a data-completeness gap, not a lookup failure, and is not the same thing as GET /v1/monitoring/airlines/{iataCode}, which reports live connector reachability rather than whether the airline as a business still operates.

Request example

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

Response example

Response example
{
  "data": {
    "airline_id": "ba",
    "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

idstringRequired
Internal airline id.
Example: ba
GET /v1/aviation/airlines/{id}/status | Norba API