IATA & ICAO CodesRange & SeatingFleet UsageManufacturer DataFuzzy Search

    Aircraft type specs, range & fleet usage

    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 https://aviation-api.logostream.dev/v1/aircraft-types?iata=788
    Aircraft Types
    385+
    Range & Seating
    Fleet Usage
    Build faster

    The Aircraft Types API for Aviation Apps

    Get manufacturer specs, range data, and real-world fleet usage for every major commercial aircraft type — in a single REST API call.

    IATA & ICAO Type Codes

    Look up aircraft types by standard IATA or ICAO type designators. Supports comma-separated bulk lookup.

    Range & Seating Data

    Maximum range in km and typical seat count from manufacturer specifications.

    Fleet Usage by Airline

    Each record lists all airlines operating the type with per-carrier fleet counts.

    Fuzzy Name Search

    Find types by manufacturer or name fragment — e.g., name=dreamliner or name=airbus.

    All Categories

    Narrowbody, widebody, regional jet, turboprop, and freighter types all available.

    Live Demo

    Explore Aircraft Type Data

    Real records from the Aircraft Types API

    response.json
    // loading...

    Range Filter

    ?min_range_km=

    Select a range filter to see matching long-haul aircraft types.

    How it works

    Fetch 787 specs in one call

    Range, seating, manufacturer, and operating airlines — one request.

    aircraft-types-example.js
    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);

    Why choose our Aircraft Types API?

    ✈️ Full Specs

    Range, seating, first flight, category, and manufacturer from official sources for all major commercial types.

    Max range in kilometres
    Typical seat count
    First flight date

    🏢 Fleet Intelligence

    Every type record includes which airlines operate it and how many — real fleet tracking data for each aircraft family.

    Per-airline fleet counts
    Airline IATA & name
    Updated from fleet databases

    🔍 Easy Lookup

    IATA bulk lookup and fuzzy name search make it easy to power type pickers, booking displays, and fleet dashboards.

    Comma-separated IATA bulk query
    Fuzzy name & manufacturer search
    Localized descriptions

    Aircraft Types API — Frequently Asked Questions

    Everything you need to know about the aircraft types endpoint.

    Still have questions?

    Our team is happy to help you integrate the Aircraft Types API.

    Get in touch