# Monitor London to Dubai Flights

**Use case:** 

Monitor London to Dubai Flights by scraping route data, schedules, and flight metadata for travel analytics.

## Input

```json
{
  "maxItems": 100,
  "origins": [
    "LHR"
  ],
  "destinations": [
    "DXB"
  ],
  "distance": "50"
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "createdAt": {
    "label": "Created At",
    "format": "date"
  },
  "icao": {
    "label": "ICAO Flight",
    "format": "text"
  },
  "iata": {
    "label": "IATA Flight",
    "format": "text"
  },
  "flight_type": {
    "label": "Type (A/D)",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "number"
  },
  "airline_icao": {
    "label": "Airline ICAO",
    "format": "text"
  },
  "origin": {
    "label": "Origin",
    "format": "text"
  },
  "destination": {
    "label": "Destination",
    "format": "text"
  },
  "departure": {
    "label": "Departure (sched)",
    "format": "date"
  },
  "departure_actual": {
    "label": "Departure (actual)",
    "format": "date"
  },
  "arrival": {
    "label": "Arrival (sched)",
    "format": "date"
  },
  "arrival_actual": {
    "label": "Arrival (actual)",
    "format": "date"
  },
  "departure_terminal": {
    "label": "Dep. Terminal",
    "format": "text"
  },
  "departure_gate": {
    "label": "Dep. Gate",
    "format": "text"
  },
  "departure_check_in_desk": {
    "label": "Check-in Desk",
    "format": "text"
  },
  "arrival_terminal": {
    "label": "Arr. Terminal",
    "format": "text"
  },
  "service": {
    "label": "Service",
    "format": "text"
  },
  "shared_codes": {
    "label": "Codeshares",
    "format": "text"
  },
  "route_time": {
    "label": "Route Time (s)",
    "format": "number"
  },
  "sqawk": {
    "label": "Squawk",
    "format": "text"
  },
  "aircraft.regno": {
    "label": "Reg",
    "format": "text"
  },
  "aircraft.manufacturer": {
    "label": "Manufacturer",
    "format": "text"
  },
  "aircraft.model": {
    "label": "Model",
    "format": "text"
  },
  "aircraft.icao": {
    "label": "AC ICAO",
    "format": "text"
  },
  "aircraft.type": {
    "label": "AC Type",
    "format": "text"
  },
  "aircraft.first_flight": {
    "label": "First Flight",
    "format": "date"
  },
  "aircraft.photo_url": {
    "label": "Aircraft Photo",
    "format": "image"
  },
  "seats.first_class": {
    "label": "F Seats",
    "format": "number"
  },
  "seats.business": {
    "label": "J Seats",
    "format": "number"
  },
  "seats.premium": {
    "label": "W Seats",
    "format": "number"
  },
  "seats.economy": {
    "label": "Y Seats",
    "format": "number"
  },
  "meals.first_class": {
    "label": "F Meals",
    "format": "text"
  },
  "meals.business": {
    "label": "J Meals",
    "format": "text"
  },
  "meals.premium": {
    "label": "W Meals",
    "format": "text"
  },
  "meals.economy": {
    "label": "Y Meals",
    "format": "text"
  },
  "waypoints": {
    "label": "Waypoints",
    "format": "object"
  },
  "positions": {
    "label": "Positions",
    "format": "object"
  },
  "metadata": {
    "label": "Metadata",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [PlanesLive Scraper - FlightRadar24 Alternative](https://apify.com/igolaizola/planeslive-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/igolaizola/planeslive-scraper) to learn more, explore other use cases, and run it yourself.