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

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

icao_typestringRequired
ICAO type designator.
Example: B77W
GET /v1/aviation/aircraft-types/{icao_type} | Norba API