# Seven-Day FlixBus Fare Monitor

**Use case:** 

Monitor FlixBus fares across a date range and collect prices, departure times, availability, and booking URLs.

## Input

```json
{
  "routes": [
    {
      "url": "https://global.flixbus.com/bus-routes/bus-paris-lyon"
    }
  ],
  "startUrls": [
    {
      "url": "https://global.flixbus.com/bus-routes/bus-paris-lyon"
    }
  ],
  "departureDate": "2026-07-08",
  "dateRangeEnd": "2026-07-14",
  "adults": 1,
  "currency": "EUR",
  "locale": "en",
  "includeAfterMidnightRides": true,
  "maxItems": 500
}
```

## Output

```json
{
  "route": {
    "label": "Route"
  },
  "departureCity": {
    "label": "Departure city"
  },
  "arrivalCity": {
    "label": "Arrival city"
  },
  "departureStation": {
    "label": "Departure station"
  },
  "arrivalStation": {
    "label": "Arrival station"
  },
  "departureTime": {
    "label": "Departure time"
  },
  "arrivalTime": {
    "label": "Arrival time"
  },
  "travelDate": {
    "label": "Travel date"
  },
  "durationMinutes": {
    "label": "Duration (minutes)"
  },
  "transferType": {
    "label": "Transfer type"
  },
  "provider": {
    "label": "Provider"
  },
  "price": {
    "label": "Price"
  },
  "priceWithPlatformFee": {
    "label": "Price with platform fee"
  },
  "currency": {
    "label": "Currency"
  },
  "availabilityStatus": {
    "label": "Availability status"
  },
  "availableSeats": {
    "label": "Available seats"
  },
  "seatsLeftAtPrice": {
    "label": "Seats left at price"
  },
  "bikeSlots": {
    "label": "Bike slots"
  },
  "legsCount": {
    "label": "Legs count"
  },
  "bookingUrl": {
    "label": "Booking URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [FlixBus Trip Prices Scraper](https://apify.com/automation-lab/flixbus-trip-prices-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/flixbus-trip-prices-scraper) to learn more, explore other use cases, and run it yourself.