Structured aircraft type records with manufacturer details, maximum range, typical seating, and the airlines that operate each type. Filter by IATA code or fuzzy name search — built for booking engines, aviation dashboards, and fleet tracking apps.
Get manufacturer specs, range data, and real-world fleet usage for every major commercial aircraft type — in a single REST API call.
Look up aircraft types by standard IATA or ICAO type designators. Supports comma-separated bulk lookup.
Maximum range in km and typical seat count from manufacturer specifications.
Each record lists all airlines operating the type with per-carrier fleet counts.
Find types by manufacturer or name fragment — e.g., name=dreamliner or name=airbus.
Narrowbody, widebody, regional jet, turboprop, and freighter types all available.
Real records from the Aircraft Types API
// loading...
Select a range filter to see matching long-haul aircraft types.
Range, seating, manufacturer, and operating airlines — one request.
const res = await fetch(
"https://aviation-api.logostream.dev/v1/aircraft-types?iata=788",
{ headers: { "x-api-key": "YOUR_API_KEY" } }
);
const { data } = await res.json();
const aircraft = data[0];
// Type profile
console.log(aircraft.name); // "Boeing 787-8 Dreamliner"
console.log(aircraft.iata); // "788"
console.log(aircraft.icao); // "B788"
console.log(aircraft.manufacturer); // "Boeing"
console.log(aircraft.category); // "widebody"
console.log(aircraft.first_flight); // "2009-12-15"
console.log(aircraft.typical_seats); // 242
console.log(aircraft.range_km); // 13_620
// Airlines operating this type
aircraft.airlines.forEach(entry => {
console.log(
entry.airline.iata, // e.g. "LH"
entry.airline.name, // e.g. "Lufthansa"
entry.count // e.g. 32
);
});
// Wikipedia & description
console.log(aircraft.wikipedia_url);
console.log(aircraft.description);Range, seating, first flight, category, and manufacturer from official sources for all major commercial types.
Every type record includes which airlines operate it and how many — real fleet tracking data for each aircraft family.
IATA bulk lookup and fuzzy name search make it easy to power type pickers, booking displays, and fleet dashboards.
Everything you need to know about the aircraft types endpoint.