Aircraft

Aircraft registry lookup by ICAO24 hex or registration.

Resolve an aircraft you've observed elsewhere — by its ICAO24 hex address or its registration — into manufacturer, operator, and airframe details.

GET/v1/aircraft/types/{type_code}
Reference data for an ICAO aircraft type
GET/v1/aircraft/{hex_code}
Single aircraft by ICAO24 hex address
GET/v1/aircraft/registration/{registration}
Aircraft matching a registration
ParamTypeDescription
registration*stringTail number, e.g. N12345. Returns a list — registrations aren't guaranteed unique in the source data, unlike ICAO24 hex addresses.
GET /v1/aircraft/a1b2c3
{
  "icao24":: "a1b2c3",
  "registration":: "N12345",
  "manufacturer_icao":: "BOEING",
  "manufacturer_name":: "Boeing",
  "model":: "737-800",
  "type_code":: "B738",
  "serial_number":: "34567",
  "icao_aircraft_type":: "L2J",
  "category_description":: "Large (75000 to 300000 lbs)",
  "operator":: "Example Airlines",
  "operator_callsign":: "EXAMPLE",
  "operator_icao":: "EXA",
  "operator_iata":: "EX",
  "owner":: "Example Airlines",
  "built":: "2015",
  "first_flight_date":: "2015-03-12",
  "engines":: "2 x CFM56-7B",
  "has_adsb":: true
}