# Monitor FlixBus ticket prices in real time

**Use case:** 

Monitor bus ticket prices in the US and Europe in real time. Schedule routine checks to stay on top of the dynamic pricing models.

## Input

```json
{
  "from": "Prague",
  "to": "Berlin",
  "adults": 1,
  "currency": "EUR",
  "locale": "en_US",
  "onlyDirectConnections": false,
  "maxResults": 20
}
```

## Output

```json
{
  "from": {
    "label": "From",
    "format": "string"
  },
  "to": {
    "label": "To",
    "format": "string"
  },
  "departure": {
    "label": "Departure",
    "format": "string"
  },
  "arrival": {
    "label": "Arrival",
    "format": "string"
  },
  "timeLengthMinutes": {
    "label": "Minutes",
    "format": "integer"
  },
  "changesCount": {
    "label": "Transfers",
    "format": "integer"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "legs": {
    "label": "Legs",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [FlixBus Ticket Scraper](https://apify.com/jindrich.bar/flixbus-connections) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jindrich.bar/flixbus-connections) to learn more, explore other use cases, and run it yourself.