Skip to content

Scrapes a website to get today's fuel prices for Indian states and districts. The data is accessible through an API

Notifications You must be signed in to change notification settings

sayan99614/fuel-prices-india-api

 
 

Repository files navigation

Fuel Price API for India

Get Today's fuel prices for Indian states and districts

Live version : https://fuelprice-api-india.herokuapp.com/

API Endpoints :

Base URL: https://fuelprice-api-india.herokuapp.com/

  • GET /states List all the possible state options

  • GET /<state>/districts List all the districts in a particular state

  • GET /price/<state> List all fuel prices in the state for all districts

  • GET /price/<state>/<district> Returns the price for specific district in a state

Example:

{
    "district": "FATEHGARH SAHIB",
    "products": [
                  {
                  "productName": "Petrol",
                  "productPrice": "81.72",
                  "productCurrency": "INR",
                  "priceChange": "0.15",
                  "priceChangeSign": "-"
                  },
                  {
                  "productName": "Diesel",
                  "productPrice": "75.13",
                  "productCurrency": "INR",
                  "priceChange": "0.19",
                  "priceChangeSign": "-"
                  }
                ]
}

For more examples : https://github.com/anshikakaythwas/fuel-prices-india-api/tree/master/jsonOutputs

Source: https://www.newsrain.in/petrol-diesel-prices

Feel free to open an issue for any bugs/features. (Bonus points for creating a pull request fixing/adding the same!)

About

Scrapes a website to get today's fuel prices for Indian states and districts. The data is accessible through an API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%