Fuel Prices
Petrol & diesel prices across Indian states & cities. Crawled 5ร daily (05:30 โ 10:30 IST).
Organized schema โ petrol + diesel hamesha ek row me, states default, state call pe cities nested.
Endpointsโ
GET/fuel
Petrol + diesel โ sirf states (33) default.
GET/fuel?fuel=petrol
Sirf ek fuel โ
petrol ยท diesel (states).GET/fuel?city=mumbai
Single city โ fast, ek hi object. Case-insensitive.
GET/fuel?state=west+bengal
State + uske andar saare cities nested.
GET/fuel?type=city
Location type filter โ
city ยท state.GET/fuel/cities
Saare locations โ
cities[] + states[] + locations[] (46 total).GET/fuel/search?q=del
Fuzzy location search โ up to 20 matches.
GET/fuel/history?fuel=petrol&city=mumbai&days=10
Last 10 days ka price โ particular city/location ka (max 90 days).
GET/fuel/latest
Universal โ top 13 popular cities ka petrol + diesel price (no filters needed).
GET/fuel/status
Last crawl status โ success/fail timestamps.
Query Parametersโ
| Parameter | Values | Default | Required | Notes |
|---|---|---|---|---|
fuel | petrol ยท diesel | โ (dono) | โ | Fuel filter |
city | mumbai, delhi, kolkataโฆ | โ | โ | Single city lookup |
state | west bengal, biharโฆ | โ | โ | State + nested cities |
type | city ยท state | state | โ | Location type filter |
q | any string | โ | โ | For /fuel/search |
days | 1โ90 | 7 | โ | History window |
Example โ /fuel (sirf states, default)โ
curl "https://api.apimitra.in/fuel"
{
"status": "ok",
"endpoint": "/fuel",
"scope": "states",
"fuels": ["petrol", "diesel"],
"count": 33,
"data": [
{
"location": "West Bengal",
"location_type": "state",
"updated_at": "2026-08-02T16:53:46.267Z",
"petrol": { "price": 113.51, "unit": "per_litre", "change_pct": 0 },
"diesel": { "price": 99.82, "unit": "per_litre", "change_pct": 0 }
}
],
"fetched_at": "2026-08-02T16:53:46.267Z"
}
Example โ State + nested citiesโ
curl "https://api.apimitra.in/fuel?state=uttar+pradesh"
{
"status": "ok",
"endpoint": "/fuel",
"state": "Uttar Pradesh",
"fuels": ["petrol", "diesel"],
"price": {
"location": "Uttar Pradesh",
"location_type": "state",
"petrol": { "price": 111.2, "unit": "per_litre", "change_pct": 0 },
"diesel": { "price": 98.5, "unit": "per_litre", "change_pct": 0 }
},
"cities": [
{
"location": "Lucknow",
"location_type": "city",
"petrol": { "price": 101.56, "unit": "per_litre", "change_pct": 0 },
"diesel": { "price": 95.06, "unit": "per_litre", "change_pct": 0 }
},
{
"location": "Noida",
"location_type": "city",
"petrol": { "price": 102.12, "unit": "per_litre", "change_pct": 0 },
"diesel": { "price": 95.56, "unit": "per_litre", "change_pct": 0 }
}
],
"count": 3,
"fetched_at": "2026-08-02T16:53:46.267Z"
}
Example โ Single city (fast)โ
curl "https://api.apimitra.in/fuel?city=mumbai"
{
"status": "ok",
"endpoint": "/fuel",
"city": "Mumbai",
"fuels": ["petrol", "diesel"],
"price": {
"location": "Mumbai",
"location_type": "city",
"petrol": { "price": 111.21, "unit": "per_litre", "change_pct": 0 },
"diesel": { "price": 97.83, "unit": "per_litre", "change_pct": 0 }
},
"fetched_at": "2026-08-02T16:53:46.267Z"
}
Example โ Universal /fuel/latest (top popular cities)โ
curl "https://api.apimitra.in/fuel/latest"
{
"status": "ok",
"endpoint": "/fuel/latest",
"count": 13,
"updated_at": "2026-08-02T16:53:46.267Z",
"data": [
{
"location": "Mumbai",
"petrol": { "price": 111.21, "unit": "per_litre", "change_pct": 0 },
"diesel": { "price": 97.83, "unit": "per_litre", "change_pct": 0 }
},
{
"location": "New Delhi",
"petrol": { "price": 102.12, "unit": "per_litre", "change_pct": 0 },
"diesel": { "price": 95.2, "unit": "per_litre", "change_pct": 0 }
}
]
}
Example โ /fuel/cities (saare locations)โ
curl "https://api.apimitra.in/fuel/cities"
{
"status": "ok",
"count": 46,
"locations": [
{ "name": "Mumbai", "type": "city" },
{ "name": "West Bengal", "type": "state" }
],
"cities": ["Bangalore", "Mumbai", "New Delhi", "โฆ"],
"states": ["Assam", "Bihar", "West Bengal", "โฆ"]
}
Example โ Petrol Historyโ
curl "https://api.apimitra.in/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.