Aviation Data

Aircraft types by manufacturer

Every aircraft type from one manufacturer, without building the equivalent ?manufacturer= query yourself.

GET/v1/aviation/manufacturers/{name}/aircraft-typesRequires X-API-Key
Equivalent to GET /v1/aviation/aircraft-types?manufacturer={name} with the name in the path instead of a query string, and unpaginated. Matches the same case-insensitive manufacturer name GET /v1/aviation/manufacturers lists.

Request example

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

Response example

Response example
{
  "data": [
    {
      "icao_type_code": "B77W",
      "manufacturer": "BOEING",
      "model": "777-300ER",
      "aircraft_class": "widebody"
    }
  ],
  "meta": {
    "request_id": "576bc829a3da6af5",
    "count": 1,
    "total": 1
  },
  "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

namestringRequired
Manufacturer name, case-insensitive.
Example: BOEING
GET /v1/aviation/manufacturers/{name}/aircraft-types