Israeli Gas Stations

All 1,100+ gas stations in Israel with location, company and services.

GovernmentFreeחינמיישראלdata.gov.il
Official siteDocumentation

About this dataset

Official Ministry of Energy dataset of all active gas stations in Israel. Each entry has: company (Paz, Sonol, Dor-Alon...), precise lat/lon, services (wash, maintenance), fuel types, opening hours. Useful for navigation apps, fleet management, and fuel-cost tools.

Who it's for

Waze competitors
Fleet apps
Fuel-price comparison tools

How to use it

  1. 1
    Search 'gas stations' on data.gov.il.
  2. 2
    Copy the CSV resource_id.
  3. 3
    Download all records once per day.

Installation & setup

Download the CSV and load into Postgres with a PostGIS geo index: CREATE INDEX ON stations USING GIST (location).

Code examples

// PostGIS query — nearest 5 gas stations to a point
const { rows } = await db.query(`
  SELECT name, company,
         ST_Distance(location, ST_MakePoint($1, $2)::geography) as dist
  FROM gas_stations
  ORDER BY location <-> ST_MakePoint($1, $2)
  LIMIT 5
`, [lon, lat]);

Sample response

{
  "records": [
    {
      "station_id": 1029,
      "company": "פז",
      "address": "דרך נמיר 100, תל אביב",
      "lat": 32.098,
      "lon": 34.788,
      "services": "שטיפה, מרכול, קפה"
    }
  ]
}

FAQ

Israeli fuel prices are regulated; the max price is published by the ministry.

Tips & pitfalls

Combine with the EV charger dataset for full coverage.

More datasets in this category