# Live Flight Status Tracker for UA100

**Use case:** 

Track the live position and flight details for UA100.

## Input

```json
{
  "target": "liveFlights",
  "flightNumbers": [
    "UA100"
  ],
  "aircraftState": "airborne",
  "requireUsableCoordinates": true,
  "maxItems": 10
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type",
    "format": "string"
  },
  "flightNumber": {
    "label": "Flight number",
    "format": "string"
  },
  "callsign": {
    "label": "Callsign",
    "format": "string"
  },
  "icao24": {
    "label": "ICAO24 address",
    "format": "string"
  },
  "status": {
    "label": "Flight status",
    "format": "string"
  },
  "origin.iataCode": {
    "label": "IATA code",
    "format": "string"
  },
  "destination.iataCode": {
    "label": "IATA code",
    "format": "string"
  },
  "origin.scheduledTime": {
    "label": "Scheduled time",
    "format": "string"
  },
  "origin.estimatedTime": {
    "label": "Estimated time",
    "format": "string"
  },
  "destination.scheduledTime": {
    "label": "Scheduled time",
    "format": "string"
  },
  "destination.estimatedTime": {
    "label": "Estimated time",
    "format": "string"
  },
  "position.latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "position.longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "position.barometricAltitudeMeters": {
    "label": "Barometric altitude in meters",
    "format": "number"
  },
  "position.barometricAltitudeFeet": {
    "label": "Barometric altitude in feet",
    "format": "number"
  },
  "position.speedMetersPerSecond": {
    "label": "Speed in meters per second",
    "format": "number"
  },
  "position.speedKnots": {
    "label": "Speed in knots",
    "format": "number"
  },
  "position.headingDegrees": {
    "label": "Heading",
    "format": "number"
  },
  "position.onGround": {
    "label": "On ground",
    "format": "boolean"
  },
  "departureDelayMinutes": {
    "label": "Departure delay",
    "format": "integer"
  },
  "arrivalDelayMinutes": {
    "label": "Arrival delay",
    "format": "integer"
  },
  "divertedTo.iataCode": {
    "label": "IATA code",
    "format": "string"
  },
  "movementDirection": {
    "label": "Movement direction",
    "format": "string"
  },
  "lastContact": {
    "label": "Last contact",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Live Flight Tracker](https://apify.com/maximedupre/flight-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/flight-tracker) to learn more, explore other use cases, and run it yourself.