Fuel Prices
Petrol & diesel prices across Indian cities & states. Crawled 5Γ daily (05:30 β 10:30 IST).
Location-wise schema β ek location me petrol + diesel dono ek row me milte hain.
Endpointsβ
GET/fuel
Petrol + diesel dono β sab locations (location-wise).
GET/fuel?fuel=diesel
Sirf ek fuel filter β
petrol Β· diesel.GET/fuel?city=mumbai
Single city lookup β dono fuels. Case-insensitive.
GET/fuel?state=west+bengal
State-wise lookup.
GET/fuel/cities
List all available cities.
GET/fuel/search?q=del
Fuzzy location search β up to 20 matches.
GET/fuel/history?fuel=petrol&city=mumbai&days=7
Daily price history for trend charts (max 90 days).
GET/fuel/latest
Crawl status & last-update timestamps.
Query Parametersβ
| Parameter | Values | Default | Required | Notes |
|---|---|---|---|---|
fuel | petrol Β· diesel | β (dono) | β | Fuel filter β bina param dono aate hain |
city | mumbai, delhi, kolkataβ¦ | β | β | Case-insensitive |
state | west bengal, biharβ¦ | β | β | State-wise filter |
type | city Β· state | β | β | Location type filter |
q | any string | β | β | For /fuel/search |
days | 1β90 | 7 | β | History window |
Example β Sab locations (petrol + diesel)β
curl "https://apiw.proxynex.pro/fuel"
{
"status": "ok",
"api": "fuel",
"endpoint": "/fuel",
"fuels": ["petrol", "diesel"],
"count": 46,
"fetched_at": "2026-08-02T12:40:00.000Z",
"data": [
{
"location": "Mumbai",
"location_type": "city",
"updated_at": "2026-08-02T12:08:29.491Z",
"petrol": { "price": 104.21, "unit": "per_litre", "change_pct": 0 },
"diesel": { "price": 97.83, "unit": "per_litre", "change_pct": 0 }
}
]
}
Example β Single city filterβ
curl "https://apiw.proxynex.pro/fuel?fuel=diesel&city=mumbai"
{
"status": "ok",
"api": "fuel",
"fuels": ["diesel"],
"count": 1,
"data": [
{
"location": "Mumbai",
"location_type": "city",
"diesel": { "price": 97.83, "unit": "per_litre", "change_pct": 0 }
}
]
}
Example β Petrol Historyβ
curl "https://apiw.proxynex.pro/fuel/history?fuel=petrol&city=mumbai&days=7"
{
"status": "ok",
"fuel": "petrol",
"city": "mumbai",
"days": 7,
"data": [
{ "location": "Mumbai", "price": "104.21", "date": "2026-08-02" }
]
}
note
Gold, silver & platinum ab alag hain β dekho Commodities. commodity=gold ab /fuel pe error dega with redirect hint.