searchTrainStations
Find train stations by entering a keyword, such as '北京西', to quickly locate relevant station information for planning trips or transfers.
Instructions
Search for train stations by keyword.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Keyword to search for train stations (e.g. 北京西) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "Keyword to search for train stations (e.g. 北京西)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}