get_transit_and_directions
Calculate travel routes, turn-by-turn walking steps, public transit options, and taxi fares between any two places, with automatic local and English name resolution.
Instructions
Calculate travel routes, turn-by-turn walking steps, public transit (subway/bus), and driving taxi fares between ANY two travel entities (hotels, restaurants, cafes, stations, airports, landmarks).
Supports automatic English & local language place name resolution (e.g., 'Sotetsu Hotels The Splaisir Seoul Myeongdong' -> 'N Seoul Tower', 'Incheon Airport T1' -> 'Myeongdong Station').
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| origin | Yes | Starting hotel, restaurant, landmark, address, or coordinates (e.g. 'Sotetsu Hotels The Splaisir Seoul Myeongdong') | |
| country | No | Country code (default: 'KR' for South Korea via Kakao Maps). | KR |
| provider | No | Optional explicit route provider override (e.g. 'kakao', 'google_maps'). | |
| destination | Yes | Target restaurant, hotel, landmark, station, or airport (e.g. 'N Seoul Tower', 'Incheon Airport') | |
| travel_mode | No | Routing mode: 'walk' (walking only), 'transit' (subway/bus), 'driving' (car/taxi), or 'all' (default). | all |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| error | No | Error message if routing failed | |
| driving | No | Driving route option | |
| transit | No | Public transit route options | |
| walking | No | Walking route option | |
| provider | Yes | Route calculation provider (e.g. 'kakao', 'google_maps') | |
| origin_name | Yes | Resolved origin place name | |
| origin_address | No | Origin address | |
| destination_name | Yes | Resolved destination place name | |
| destination_address | No | Destination address |