Skip to main content

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​

ParameterValuesDefaultRequiredNotes
fuelpetrol Β· dieselβ€” (dono)❌Fuel filter β€” bina param dono aate hain
citymumbai, delhi, kolkataβ€¦β€”βŒCase-insensitive
statewest bengal, biharβ€¦β€”βŒState-wise filter
typecity Β· stateβ€”βŒLocation type filter
qany stringβ€”βœ…For /fuel/search
days1–907❌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.