Aviation Data
Get aircraft type
Look up a single aircraft type by its ICAO type designator.
GET
/v1/aviation/aircraft-types/{icao_type}Requires X-API-KeyThe single-record counterpart to the list endpoint above — the same fields, for one ICAO type designator (e.g.
B77W, A388) instead of a filtered page.Request example
curl --request GET \
--url https://api.norba.io/v1/aviation/aircraft-types/{icao_type} \
--header "X-API-Key: $NORBA_KEY"Response example
Response example
{
"data": {
"icao_type_code": "B77W",
"manufacturer": "BOEING",
"model": "777-300ER",
"aircraft_class": "widebody",
"wake_turbulence_category": "Heavy"
},
"meta": {
"request_id": "576bc829a3da6af5"
},
"errors": []
}Path parameters
icao_typestringRequiredICAO type designator.
Example:
B77W