get_line_status
Check real-time Transport for London line status to get current service information and disruption details for specific tube lines.
Instructions
Get the status of a TfL line from the Transport for London Unified API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_key | No | Optional application key for the API. | |
lineId | Yes | The identifier of the line to query (e.g., victoria, central). |
Input Schema (JSON Schema)
{
"properties": {
"app_key": {
"description": "Optional application key for the API.",
"type": "string"
},
"lineId": {
"description": "The identifier of the line to query (e.g., victoria, central).",
"type": "string"
}
},
"required": [
"lineId"
],
"type": "object"
}