Live Flight Data

Real-Time Flight Tracking API

Access comprehensive flight data including departures, arrivals, delays, gate information, and more.

Powerful Flight Data Features

Everything you need to build aviation-focused applications with reliable, real-time data.

Real-Time Updates

Get live flight status updates including delays, cancellations, and gate changes as they happen.

Flight Progress

Track flight progress with percentage completion, estimated times, and actual arrival data.

Airport Filtering

Filter flights by specific airports to get departures and arrivals for any location.

Delay Tracking

Monitor departure and arrival delays with precise timing information in seconds.

Gate & Terminal Info

Access detailed gate and terminal information for both origin and destination airports.

Timezone Support

Full timezone support for origin and destination to handle international flights accurately.

Simple, RESTful API

Clean endpoints designed for easy integration. Get started in minutes.

Important: Fetch Flight Data First

Before using the API, you must fetch flight data by running the following console command:

php artisan app:get-flight-data {--airports=* : The airports to collect info on. ie: KBJI for Bemidji and or KHIB for Hibbing }
GET /api/flights

Retrieve all tracked flights with complete details.

GET /api/flights/{airport}

Get all flights (both departing and arriving) for a specific airport code.

GET /api/flights/{airport}/departing

Get only departing flights from a specific airport.

GET /api/flights/{airport}/arriving

Get only arriving flights to a specific airport.

Rich Flight Data

Each flight includes comprehensive data fields to power your applications.

Flight Identification

Flight number and current status

Origin & Destination

Airport codes, gates, terminals, and timezones

Timing Information

Scheduled, estimated, and actual times for departure/arrival

Progress & Delays

Flight progress percentage and delay information in seconds

response.json
    {
        "id": "9992",
        "flight": "AA1234",
        "status": "en_route",
        "progress_percent": 67,
        "origin": "JFK",
        "destination": "LAX",
        "origin_timezone": "America/New_York",
        "origin_gate": "B24",
        "origin_terminal": "4",
        "destination_timezone": "America/Los_Angeles"
        "destination_gate": "52A",
        "destination_terminal": "7",
        "departure": "2026-01-23 13:15:00",
        "departure_delay": 0,
        "departure_actual": 0,
        "departure_estimated": 2026-01-23 13:29:00,
        "arrival": "2026-01-23 14:35:00",
        "arrival_delay": 300,
        "arrival_actual": 300,
        "arrival_estimated": 2026-01-23 14:39:00,
    }