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-KeyEquivalent 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": []
}Path parameters
namestringRequiredManufacturer name, case-insensitive.
Example:
BOEING