Fuel Prices
Real-time fuel and petrol prices
Real-time fuel prices at stations across Australia, UK, Germany, France, Spain, Italy, Austria + US/EU averages. Petrol, diesel, E10, E85, LPG, premium. Australian fuel availability tracking included.
Find fuel stations near a location with current prices. Station-level data for all of Australia, UK, Germany, France, Spain, Italy, and Austria.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "fuel-prices",
"skill": "find_stations",
"input": {
"latitude": 51.5074,
"longitude": -0.1278
}
}' \
https://api.toolrouter.com/v1/tools/callFind the cheapest fuel stations nearby, sorted by price. Shows savings compared to the most expensive option. Works in all of Australia, UK, Germany, France, Spain, Italy, Austria.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "fuel-prices",
"skill": "cheapest_fuel",
"input": {
"latitude": 53.4808,
"longitude": -2.2426,
"fuel_type": "petrol"
}
}' \
https://api.toolrouter.com/v1/tools/callGet full details for a specific fuel station including all fuel prices, opening hours, and amenities. Supports station lookup by ID (Germany) or by coordinates (all countries).
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "fuel-prices",
"skill": "station_details",
"input": {
"station_id": "6b2bd0b8-22db-424e-8547-c2abcfe06a6c",
"country": "de"
}
}' \
https://api.toolrouter.com/v1/tools/callGet average fuel prices for a country, US state, or EU region. Covers US state-level data and EU country-level averages.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "fuel-prices",
"skill": "regional_prices",
"input": {
"country": "us"
}
}' \
https://api.toolrouter.com/v1/tools/callTrack fuel price trends over time. Shows weekly price history with trend analysis, highs, lows, and percent change. Currently US only.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "fuel-prices",
"skill": "price_trends",
"input": {
"country": "us"
}
}' \
https://api.toolrouter.com/v1/tools/callCompare fuel prices across multiple countries. Prices are normalized to USD per litre for fair comparison. Supports US and all EU/EEA countries.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "fuel-prices",
"skill": "compare_countries",
"input": {
"countries": [
"us",
"uk",
"germany",
"france",
"italy",
"spain"
],
"fuel_type": "diesel"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"fuel-prices","skill":"find_stations","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Can I find nearby stations with live prices?
Yes. `find_stations` searches near a latitude and longitude and returns current station-level prices for the UK, Germany, and France.
Can it tell me the cheapest station nearby?
`cheapest_fuel` sorts nearby stations by price and shows the savings versus the most expensive option in the area.
Can I check one station in detail?
`station_details` returns full fuel prices, opening hours, brand, and amenities, and can also look up the nearest UK station from coordinates.
Does it cover regional averages and price trends too?
Yes. `regional_prices` covers US states and EU country averages, `price_trends` shows weekly U.S. history, and `compare_countries` normalizes prices to USD per litre.