# Southwest multi-route fare price monitor

**Use case:** 

Monitor Southwest calendar prices across several routes for travel deals, repricing credits, agency analysis, or fare alerts.

## Input

```json
{
  "routes": [
    {
      "origin": "LAS",
      "destination": "LAX"
    },
    {
      "origin": "DAL",
      "destination": "HOU"
    },
    {
      "origin": "BWI",
      "destination": "MCO"
    }
  ],
  "departureDate": "today+60",
  "fareMode": "DOLLARS",
  "currencyCode": "USD",
  "adultPassengersCount": 1,
  "maxDatesPerRoute": 31,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "origin": {
    "label": "Origin"
  },
  "destination": {
    "label": "Destination"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "currencyCode": {
    "label": "Currency"
  },
  "taxesCurrencyCode": {
    "label": "Taxes currency"
  },
  "lowestTotalFare": {
    "label": "Lowest total"
  },
  "lowestFareBucket": {
    "label": "Lowest bucket"
  },
  "wgaTotalFare": {
    "label": "WGA total"
  },
  "pluTotalFare": {
    "label": "WGA Plus total"
  },
  "anyTotalFare": {
    "label": "Anytime total"
  },
  "busTotalFare": {
    "label": "Business Select total"
  },
  "international": {
    "label": "International"
  },
  "fareMode": {
    "label": "Fare mode"
  },
  "adultPassengersCount": {
    "label": "Adults"
  },
  "availableFareBuckets": {
    "label": "Available buckets"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "retrievedAt": {
    "label": "Retrieved",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Southwest Low Fare Calendar Scraper](https://apify.com/automation-lab/southwest-low-fare-calendar-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/southwest-low-fare-calendar-scraper) to learn more, explore other use cases, and run it yourself.