Israel Government Data API avatar

Israel Government Data API

Pricing

Pay per usage

Go to Apify Store
Israel Government Data API

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

kane liu

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

12 hours ago

Last modified

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.

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.

  • 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

WhoWhat
Due diligence teamsSearch ICA company registry, corporate changes, and partnership records
Construction firmsFind registered contractors, development contractors, manpower constructors, and planning data
Healthcare organizationsSearch pharmacist licenses, doctor registries, hospital directories, and specialized clinics
Government contractorsMonitor procurement tenders, exemptions, and reciprocal supplier programs
Legal professionalsAccess corporate change records and company pending deletion notices
Cannabis industryFind certified cannabis physicians and authorized cannabis pharmacies

What data can Israel Government Data Search extract?

SourceData typeExample fields
ICA companiesIsraeli company registrycompany_name, company_number, status, type
ICA partnershipsPartnership registrypartnership_name, number, status
ICA corporate changesCorporate structure changescompany, change_type, date
Registered contractorsLicensed construction contractorsname, classification, city
Manpower constructorsManpower contractor registryname, license_number, specialization
PharmacistsAuthorized pharmacist directoryname, license_number, city
Doctors licensesLicensed physician directoryname, specialty, license_number
Cannabis physiciansCertified cannabis prescribersname, specialty, region
Cannabis pharmaciesLicensed cannabis dispensariespharmacy_name, city, address
Psychiatric hospitalsPsychiatric facility directoryname, city, beds
Trauma centersTrauma treatment centersname, city, level
Mental health clinicsCommunity mental health centersname, city, services
Procurement tendersGovernment tender noticestitle, ministry, deadline, budget
Procurement exemptionsSole-source procurement exemptionsministry, supplier, amount, reason

How to search Israeli data

  1. Open the Actor in Apify Console
  2. Enter search terms in Hebrew or English (e.g. "Teva", "תל אביב", "construction")
  3. Select data categories — business, construction, and health are enabled by default
  4. Click Start — the Actor queries all enabled sources in parallel
  5. 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)

CategorySourcesCount
BusinessICA companies (search/pending deletion/corporate changes), partnerships, reciprocal procurement suppliers5
ConstructionContractor registries (development/manpower/registered), procurement notices/exemptions, parcel shapes, planning packages8
HealthPharmacists, doctors, cannabis physicians/pharmacies, psychiatric hospitals, trauma centers, mental health clinics, HIV clinics, rehab, vaccination, COVID testing, resilience centers, balancing homes, emergency medic training15
ProcurementTenders, notices (search/detail), exemptions, reciprocal suppliers5

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 ApifyClient
client = 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)

Other Data API Actors