bus_arrival
Retrieve real-time bus arrival details for a specific bus stop in Singapore, including estimated times, bus locations, and crowding levels. Optional filtering by bus service number.
Instructions
Get real-time bus arrival information for a specific bus stop and optionally a specific service number. Returns estimated arrival times, bus locations, and crowding levels.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
busStopCode | Yes | The unique 5-digit bus stop code | |
serviceNo | No | Optional bus service number to filter results |
Input Schema (JSON Schema)
{
"properties": {
"busStopCode": {
"description": "The unique 5-digit bus stop code",
"type": "string"
},
"serviceNo": {
"description": "Optional bus service number to filter results",
"type": "string"
}
},
"required": [
"busStopCode"
],
"type": "object"
}