Israeli Educational Institutions

All 5,400+ schools and kindergartens in Israel with institution code, address, student count.

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

About this dataset

Ministry of Education dataset covering every school and kindergarten in Israel. Each record: institution code, name, full address, level (elementary, middle, high), sector (secular, religious, Arab, Haredi), student count. Critical for real-estate apps, relocation tools, neighborhood comparisons.

Who it's for

Real-estate platforms
Relocation tools
Neighborhood comparison apps

How to use it

  1. 1
    Search 'educational institutions' on data.gov.il.
  2. 2
    A partially-published performance dataset also exists for transparency.

Installation & setup

Download and load into DB with an index on city and neighborhood.

Code examples

import requests
r = requests.get(
    "https://data.gov.il/api/3/action/datastore_search",
    params={
        "resource_id": "YOUR_RESOURCE_ID",
        "filters": '{"ישוב": "תל אביב יפו"}',
        "limit": 100,
    },
)
schools = r.json()["result"]["records"]

Sample response

{
  "records": [
    {
      "semel_mosad": 440001,
      "shem_mosad": "בית ספר יסודי ביאליק",
      "ishuv": "תל אביב יפו",
      "sug_mosad": "בית ספר יסודי",
      "zerem": "ממלכתי",
      "talmidim": 480
    }
  ]
}

FAQ

Partially — aggregates only, not individual scores.

Tips & pitfalls

For app integration, use institution code — names change, codes don't.

More datasets in this category