Aviation Data

List aircraft manufacturers

Every manufacturer name in the aircraft-type catalogue — for populating a filter or dropdown.

GET/v1/aviation/manufacturersRequires X-API-Key
Returns the distinct manufacturer names behind GET /v1/aviation/aircraft-types' manufacturer filter, so a client can build a manufacturer picker without paging through the whole aircraft-type list to collect the values itself. Unpaginated — the manufacturer list is short by construction.

Request example

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

Response example

Response example
{
  "data": [
    "AERO",
    "AIRBUS",
    "BOEING",
    "EMBRAER"
  ],
  "meta": {
    "request_id": "576bc829a3da6af5",
    "count": 4,
    "total": 4
  },
  "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.
GET /v1/aviation/manufacturers — List aircraft manufacturers