ch_get_departures
Retrieve real-time departure information for Swiss train stations using a locally hosted server. Input station name, limit results, and specify datetime for accurate schedules.
Instructions
Get departure board for a Swiss train station with real-time information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datetime | No | ||
limit | No | ||
station | Yes |
Input Schema (JSON Schema)
{
"properties": {
"datetime": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Datetime"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"title": "Limit"
},
"station": {
"title": "Station",
"type": "string"
}
},
"required": [
"station"
],
"type": "object"
}