be_get_departures
Retrieve real-time departure schedules for Belgian train stations using a locally hosted server for European public transport data.
Instructions
Get live departure board for a Belgian train station.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
station | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"title": "Limit"
},
"station": {
"title": "Station",
"type": "string"
}
},
"required": [
"station"
],
"type": "object"
}