ch_search_stations
Search for Swiss train stations by name or location using a locally hosted interface for European public transport data. Query stations with precise input parameters.
Instructions
Search for Swiss train stations by name or location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | ||
type | No | station |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"title": "Query",
"type": "string"
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "station",
"title": "Type"
}
},
"required": [
"query"
],
"type": "object"
}