# Deutsche Bahn Berlin to Munich ICE Schedule

**Use case:** 

Scrape ICE train timetable from Berlin Hbf to München Hbf via bahn.de: departure times, platforms, transfers, real-time delays, and occupancy.

## Input

```json
{
  "sp_intended_usage": "Describe your intended use...",
  "sp_improvement_suggestions": "Share your suggestions here...",
  "sp_contact": "Share your email here...",
  "origin": "Berlin Hbf",
  "destination": "München Hbf",
  "date": "",
  "time": "",
  "fareClass": "2",
  "includeLocalTrains": false,
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "origin_station": {
    "label": "Origin Station",
    "format": "string"
  },
  "destination_station": {
    "label": "Destination Station",
    "format": "string"
  },
  "departure_time": {
    "label": "Departure Time",
    "format": "string"
  },
  "arrival_time": {
    "label": "Arrival Time",
    "format": "string"
  },
  "duration_minutes": {
    "label": "Duration Minutes",
    "format": "number"
  },
  "transfers": {
    "label": "Transfers",
    "format": "number"
  },
  "train_type": {
    "label": "Train Type",
    "format": "string"
  },
  "train_number": {
    "label": "Train Number",
    "format": "string"
  },
  "delay_minutes": {
    "label": "Delay Minutes",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Deutsche Bahn Timetable Scraper - Schedules & Real-Time Delays](https://apify.com/jungle_synthesizer/deutsche-bahn-timetable-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jungle_synthesizer/deutsche-bahn-timetable-scraper) to learn more, explore other use cases, and run it yourself.