Get more economical stations
GET/truckers/map/stations/cheapest
Returns gas stations sorted by lowest price.
Requires JWT token authentication and is subject to rate limiting.
Key features:
- Sorts stations by ascending price (lowest to highest)
- Ideal for optimizing costs on long routes
- Includes detailed information for each station (services, location, etc.)
Example use cases:
- Displaying economical options in the app
- Planning routes with lower fuel costs
- Comparing prices across different areas
Example response:
[
{
id: b2c3d4e5-f6g7-8901,
name: Economy Station,
location: {
lat: 40.416775,
lng: -3.703790
},
services: [petrol, diesel],
rating: 3.5
}
]
Responses
- 200
- 401
- 429
- 500
Stations successfully obtained.
Unauthorized - Invalid or missing JWT token. Include a valid token in the Authorization header: Bearer {token}
Too many requests - The rate limit has been exceeded.
Wait before making new requests.
Internal Server Error