# USD FlixBus Route & Price

**Use case:** 

Extract FlixBus Route & Price data filtered by USD. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "maxItems": 10,
  "fromCity": "Berlin",
  "toCity": "Munich",
  "adults": 1,
  "currency": "USD"
}
```

## Output

```json
{
  "fromCity": {
    "label": "From",
    "format": "text"
  },
  "toCity": {
    "label": "To",
    "format": "text"
  },
  "departureTime": {
    "label": "Departure",
    "format": "date"
  },
  "arrivalTime": {
    "label": "Arrival",
    "format": "date"
  },
  "durationHours": {
    "label": "Hours",
    "format": "number"
  },
  "durationMinutes": {
    "label": "Minutes",
    "format": "number"
  },
  "transferType": {
    "label": "Type",
    "format": "text"
  },
  "numLegs": {
    "label": "Legs",
    "format": "number"
  },
  "priceTotal": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "seatsAvailable": {
    "label": "Seats",
    "format": "number"
  },
  "seatsLeftAtPrice": {
    "label": "Left at Price",
    "format": "number"
  },
  "provider": {
    "label": "Provider",
    "format": "text"
  },
  "uid": {
    "label": "Trip ID",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Collected",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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