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-KeyReturns 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": []
}