# Dubai to Mumbai Economy Flight Price Tracker

**Use case:** 

Get current economy flight prices for a one-way trip from Dubai to Mumbai on September 15, 2026. Access live fare data in CSV or JSON format.

## Input

```json
{
  "origin": "DXB",
  "destination": "BOM",
  "departureDate": "2026-09-15",
  "departureDateEnd": "",
  "returnDate": "",
  "tripType": "one-way",
  "seatClass": "economy",
  "adults": 1,
  "children": 0,
  "maxStops": "",
  "currency": "USD",
  "language": "en-US",
  "maxResults": 40,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "airlines": {
    "label": "Airlines",
    "format": "string"
  },
  "stops": {
    "label": "Stops",
    "format": "integer"
  },
  "fromCode": {
    "label": "From",
    "format": "string"
  },
  "toCode": {
    "label": "To",
    "format": "string"
  },
  "departureDate": {
    "label": "Departure date",
    "format": "string"
  },
  "departureTime": {
    "label": "Departure time",
    "format": "string"
  },
  "arrivalTime": {
    "label": "Arrival time",
    "format": "string"
  },
  "totalDurationMin": {
    "label": "Duration (min)",
    "format": "integer"
  },
  "airlineCode": {
    "label": "Airline code",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Flights Scraper - Flight Prices & Fares](https://apify.com/logiover/google-flights-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/google-flights-scraper) to learn more, explore other use cases, and run it yourself.