Israel Government Data API
Pricing
Pay per usage
Israel Government Data API
Search 33 Israeli government data sources — ICA company registry, contractor and construction registries, health facility directories (pharmacies, clinics, hospitals), and government procurement tenders. Official data from Israeli ministries.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
kane liu
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
12 hours ago
Last modified
Categories
Share
Israel Government Data Search
Search 33 official Israeli government data sources in a single API call — ICA company and partnership registries, contractor and construction registries, health facility directories (pharmacies, doctors, clinics, hospitals), and government procurement tenders. All data comes directly from Israeli government ministries through the SIP Public Data Gateway.
What is Israel Government Data Search?
Israel Government Data Search is an Apify Actor that queries official Israeli government databases across business, construction, health, and procurement domains. Instead of navigating data.gov.il portals and individual ministry websites separately, you search them all at once — in Hebrew or English.
The Actor calls the SIP Public Data Gateway — a unified API that normalizes responses from 33 Israeli data products. No browser, no scraping — just HTTPS API calls to official government sources.
Why use Israel Government Data Search?
- One search, 33 sources — Query company registries, contractor licenses, health directories, and procurement tenders simultaneously
- Official government data — All sources are public databases from Israeli Companies Authority (ICA), Ministry of Health, and government procurement systems
- Hebrew and English — Search in Hebrew or English — SIP passes terms directly to government APIs
- Deepest health coverage — 15 health facility directories including cannabis pharmacies, mental health clinics, trauma centers, and specialized treatment facilities
- Construction intelligence — Contractor registries, planning packages, parcel shapes, and procurement notices
Use cases
| Who | What |
|---|---|
| Due diligence teams | Search ICA company registry, corporate changes, and partnership records |
| Construction firms | Find registered contractors, development contractors, manpower constructors, and planning data |
| Healthcare organizations | Search pharmacist licenses, doctor registries, hospital directories, and specialized clinics |
| Government contractors | Monitor procurement tenders, exemptions, and reciprocal supplier programs |
| Legal professionals | Access corporate change records and company pending deletion notices |
| Cannabis industry | Find certified cannabis physicians and authorized cannabis pharmacies |
What data can Israel Government Data Search extract?
| Source | Data type | Example fields |
|---|---|---|
| ICA companies | Israeli company registry | company_name, company_number, status, type |
| ICA partnerships | Partnership registry | partnership_name, number, status |
| ICA corporate changes | Corporate structure changes | company, change_type, date |
| Registered contractors | Licensed construction contractors | name, classification, city |
| Manpower constructors | Manpower contractor registry | name, license_number, specialization |
| Pharmacists | Authorized pharmacist directory | name, license_number, city |
| Doctors licenses | Licensed physician directory | name, specialty, license_number |
| Cannabis physicians | Certified cannabis prescribers | name, specialty, region |
| Cannabis pharmacies | Licensed cannabis dispensaries | pharmacy_name, city, address |
| Psychiatric hospitals | Psychiatric facility directory | name, city, beds |
| Trauma centers | Trauma treatment centers | name, city, level |
| Mental health clinics | Community mental health centers | name, city, services |
| Procurement tenders | Government tender notices | title, ministry, deadline, budget |
| Procurement exemptions | Sole-source procurement exemptions | ministry, supplier, amount, reason |
How to search Israeli data
- Open the Actor in Apify Console
- Enter search terms in Hebrew or English (e.g. "Teva", "תל אביב", "construction")
- Select data categories — business, construction, and health are enabled by default
- Click Start — the Actor queries all enabled sources in parallel
- Download results as JSON, CSV, or Excel
Example input
{"searchTerms": ["Teva", "Check Point"],"includeBusiness": true,"includeConstruction": false,"includeHealth": false,"includeProcurement": false,"maxResultsPerSource": 50}
Output
{"company_name": "Teva Pharmaceutical Industries Ltd","company_number": "520000530","status": "Active","_product_id": "il_ica_companies_search","_source": "ica_companies_search","_search_term": "Teva","_collected_at": "2026-04-08T14:00:00Z"}
How much does it cost?
Pay-per-event pricing at $2.00 per 1,000 records returned.
- Company lookup (1 term, business only): ~$0.01–0.03
- Full scan (5 terms, all 33 sources): ~$0.50–3.00
No browser overhead. Control costs with maxResultsPerSource.
Data sources (33 Israeli products)
| Category | Sources | Count |
|---|---|---|
| Business | ICA companies (search/pending deletion/corporate changes), partnerships, reciprocal procurement suppliers | 5 |
| Construction | Contractor registries (development/manpower/registered), procurement notices/exemptions, parcel shapes, planning packages | 8 |
| Health | Pharmacists, doctors, cannabis physicians/pharmacies, psychiatric hospitals, trauma centers, mental health clinics, HIV clinics, rehab, vaccination, COVID testing, resilience centers, balancing homes, emergency medic training | 15 |
| Procurement | Tenders, notices (search/detail), exemptions, reciprocal suppliers | 5 |
FAQ
Does it support Hebrew search terms? Yes. SIP passes search terms directly to Israeli government APIs which support Hebrew natively. English terms also work for many sources.
How current is ICA company data? ICA company registry data updates daily as new registrations and changes are processed by the Israel Companies Authority.
What is the reciprocal procurement program? Israel's reciprocal procurement (קיזוז) requires foreign defense contractors to invest in Israeli industry. The foreign suppliers and procurement data is publicly available.
Use as MCP Tool (AI Agent Integration)
This Actor works as an MCP tool — AI agents (Claude, GPT, Cursor) can discover and run it automatically.
Quick setup (Claude Desktop / Cursor / VS Code)
Add to your MCP config:
{"mcpServers": {"apify": {"url": "https://mcp.apify.com","headers": {"Authorization": "Bearer YOUR_APIFY_TOKEN"}}}}
Then ask your AI: "Search for Teva Pharmaceutical in Israeli government databases"
Direct API call
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("lentic_clockss/israel-data-search").call(run_input={"searchTerms": ["Teva"], "maxResultsPerSource": 50})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item)