find_cheapest_gas_stations_on_route
Find low-cost gas stations along a driving route in Korea, returning five options with prices and distances so drivers can plan where to refuel.
Instructions
Finds the 5 cheapest gas stations along a route using Fuel Station Compass(주유소 나침반).
Samples the route and searches for gas stations within 1km radius at each point, returning the top 5 cheapest options.
Args: origin: Starting location (e.g., "Gangnam Station") destination: Destination (e.g., "Pangyo Station") fuel_type: B027(Gasoline), D047(Diesel), K015(Kerosene), C004(LPG) priority: RECOMMEND | TIME | DISTANCE (default: RECOMMEND)
Returns: route_info: Route details (distance_km, duration_min, origin/destination names) gas_stations: Top 5 cheapest stations with name, brand, price, distance
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| origin | Yes | ||
| priority | No | RECOMMEND | |
| fuel_type | No | B027 | |
| destination | Yes |