# Live Flight Tracker API — Real-Time Flight Data

**Use case:** 

Track live flights in real time: position, altitude, speed, route, aircraft type, and status. Export real-time flight data to JSON for monitoring.

## Input

```json
{
  "mode": "bbox",
  "bboxes": [
    "42,40,-75,-72"
  ],
  "airports": [
    "JFK"
  ],
  "registrations": [
    "N628TS"
  ],
  "maxItems": 25,
  "includeOnGround": true
}
```

## Output

```json
{
  "callsign": {
    "label": "ATC callsign",
    "format": "string"
  },
  "registration": {
    "label": "Tail number",
    "format": "string"
  },
  "aircraft_type": {
    "label": "ICAO aircraft type",
    "format": "string"
  },
  "origin": {
    "label": "Origin airport IATA",
    "format": "string"
  },
  "destination": {
    "label": "Destination airport IATA",
    "format": "string"
  },
  "altitude": {
    "label": "Altitude (feet)",
    "format": "number"
  },
  "speed": {
    "label": "Ground speed (knots)",
    "format": "number"
  },
  "lat": {
    "label": "Latitude",
    "format": "number"
  },
  "lon": {
    "label": "Longitude",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Flightradar24 API — Real-Time Aircraft, Bbox & Search](https://apify.com/tugelbay/flightradar-live-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/tugelbay/flightradar-live-tracker) to learn more, explore other use cases, and run it yourself.