UK fuel pricing data, in JSON.
Access the same forecourt feed that powers the FuelFox map and mobile app. Commercial REST access — email for keys and rates. Build the dashboard, the alert system, the routing integration, the accounting workflow.
// Cheapest E10 within 3 miles
GET /v1/stations/nearby
?lat=51.5074&lng=-0.1278
&radius_miles=3&fuel_type=petrol_e10
HTTP 200 OK
{ "cheapest": {
"name": "Tesco Kennington",
"price_ppl": 138.9,
"ingested_at": "2026-04-15T22:14:08Z"
} }Versioned, JSON-only, OpenAPI-documented.
No surprise plan-gates, no rate-limit math at three in the morning. Same payload the app gets, same source of truth.
Same data as the app
- Identical payloads to the map
- Refreshed every 30 minutes
- Zero plan-gated fields
Honest about freshness
source_updated_at timestamp — the time the retailer last republished the price to the national feed. We never hide how old the number is.- Retailer republish timestamp on every price row
- Original ingest timestamp also exposed
- Per-source last-refresh metadata
Build what matters.
The forecourt-data layer for whatever you're shipping — from a side-project alert to an accounting integration in production for thousands of vehicles.
Fleet integration
Surface live + historical pricing for route auditing and accounting workflows.
Consumer apps
Build localised search to help drivers find current prices by region or pump type.
Routing & navigation
Connect regional pricing to routing engines for fuel-aware route suggestions.
Price monitoring
Poll specific stations for price-change detection in your alerting system.
Everything you need to render the UK map.
All endpoints versioned under /v1. JSON in, JSON out. Sensible per-IP rate limit applies; email us if you need it raised.
| Method | Path | Returns |
|---|---|---|
| GET | /v1/stations/map | Stations + aggregates inside a bounding box. Same payload the FuelFox map renders. |
| GET | /v1/stations/nearby | Closest priced forecourts to a lat/lng with optional fuel-type filter. |
| GET | /v1/stations/{id} | Full detail for one forecourt: address, opening hours, prices for every fuel grade, freshness. |
| GET | /v1/stations/search | Brand or town/postcode search. Returns ranked station summaries. |
| GET | /v1/sources | Methodology metadata — every retailer feed, freshness policy, last refresh. |
Get in touch for access.
Commercial REST API over HTTPS. Tell us what you're building and the scale you need — we'll reply with a rate card and an API key.
Same data the FuelFox map and mobile app use.