Discover/Co API
live

Co APIclalbit.co.il

Check if any Israeli-registered vehicle has active Clal Insurance coverage on a given date. Returns coverage status, Hebrew summary, and full response data.

Endpoint health
verified 2d ago
check_vehicle_insurance_status
1/1 passing latest checkself-healing
Endpoints
1
Updated
26d ago

What is the Co API?

The Clal Bit API exposes 1 endpoint — check_vehicle_insurance_status — that returns 6 structured fields telling you whether a specific vehicle holds an active Clal Insurance policy on a given date. Submit a license plate number and a date in DD/MM/YYYY format and get back a boolean coverage flag, a Hebrew-language result summary, and the full upstream response object, all in a single call.

Try it
Date to check coverage for, in DD/MM/YYYY format.
Vehicle registration number (5-8 digits).
api.parse.bot/scraper/34162a50-b738-4910-8137-f7052ab657f8/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/34162a50-b738-4910-8137-f7052ab657f8/check_vehicle_insurance_status?event_date=10%2F07%2F2026&license_number=1234567' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace clalbit-co-il-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.clal_insurance_verification_api import ClalInsurance, InsuranceStatus

client = ClalInsurance()

# Check vehicle insurance coverage for a specific date
status = client.insurancestatuses.check(license_number="1234567", event_date="10/06/2026")

print(status.has_coverage, status.message)
print(status.license_number, status.event_date)
All endpoints · 1 totalmissing one? ·

Check whether a vehicle has a valid Clal Insurance policy on a specific date. Returns a boolean coverage indicator and a Hebrew-language message summarizing the result. The upstream API is queried in real time; a vehicle with no Clal policy returns has_coverage=false (not an error). License numbers are 5-8 digit Israeli vehicle registration numbers; event_date is any calendar date in DD/MM/YYYY format.

Input
ParamTypeDescription
event_daterequiredstringDate to check coverage for, in DD/MM/YYYY format.
license_numberrequiredstringVehicle registration number (5-8 digits).
Response
{
  "type": "object",
  "fields": {
    "message": "string, Hebrew-language summary of the result",
    "event_date": "string, the queried date in DD/MM/YYYY format",
    "is_success": "boolean indicating the API query completed successfully",
    "has_coverage": "boolean indicating whether the vehicle has active insurance on the given date",
    "raw_response": "object containing the full upstream API response fields",
    "license_number": "string, the queried vehicle registration number"
  },
  "sample": {
    "data": {
      "message": "בתאריך 10/06/2026 נמצא ביטוח תקף לרכב שמספרו 1234567 בחברת כלל ביטוח.",
      "event_date": "10/06/2026",
      "is_success": true,
      "has_coverage": true,
      "raw_response": {
        "HasKisui": true,
        "IsSuccess": true,
        "ErrorMessage": null,
        "FullErrorMsg": null,
        "IsGeneralError": false,
        "ResponseErrorMessageInClient": null,
        "ResponseIsAppErrorIsAppError": false,
        "ResponseShowErrorMessageInClient": false,
        "ResponseIsAppErrorAppErrorMessage": null
      },
      "license_number": "1234567"
    },
    "status": "success"
  }
}

About the Co API

What the API Returns

The check_vehicle_insurance_status endpoint accepts two required inputs: license_number (the vehicle registration number, 5–8 digits) and event_date (the date of interest, formatted as DD/MM/YYYY). The response includes has_coverage, a boolean that directly answers whether the vehicle held an active Clal Insurance policy on that date, and is_success, which confirms the query itself completed without error.

Response Fields

Alongside the boolean flags, the response echoes back license_number and event_date so results can be matched to the original query without extra bookkeeping. The message field contains a Hebrew-language narrative summary of the result — useful for displaying directly to Israeli-market end users without translation overhead. The raw_response object contains the full set of fields returned from the source, giving you access to any additional structured data beyond what the normalized fields expose.

Data Scope and Coverage

This API is specific to Clal Insurance (כלל ביטוח), one of Israel's major insurers. It does not aggregate coverage across other Israeli insurance providers. The endpoint is suited for point-in-time lookups — checking coverage on a particular historical or future date — rather than returning a policy timeline or history. Input validation is handled on the API side; license numbers outside the 5–8 digit range will not return valid coverage data.

Reliability & maintenanceVerified

The Co API is a managed, monitored endpoint for clalbit.co.il — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when clalbit.co.il changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official clalbit.co.il API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Verify insurance coverage at the time of a road accident using event_date and license_number
  • Automate pre-rental vehicle insurance checks before handing over car keys
  • Integrate into fleet management dashboards to flag vehicles with lapsed Clal coverage
  • Display Hebrew-language coverage confirmations directly in Israeli consumer-facing apps using the message field
  • Audit historical coverage status for a specific date using a past event_date value
  • Build insurance compliance checks into parking or toll management platforms
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Clal Insurance provide an official public developer API for coverage lookups?+
Clal Insurance does not publish a documented public developer API for third-party vehicle insurance lookups. The Parse API provides a structured interface for this data.
What does `has_coverage` actually tell me, and how is it different from `is_success`?+
is_success is true when the API query completed and received a valid response — it does not say anything about coverage itself. has_coverage is the substantive answer: true means the vehicle had an active Clal Insurance policy on the queried date, false means it did not. A query can succeed (is_success: true) while returning no coverage (has_coverage: false).
Can I check coverage for insurers other than Clal — such as Harel, Migdal, or Menorah?+
Not currently. The API only covers Clal Insurance (כלל ביטוח) policy lookups. You can fork this API on Parse and revise it to add endpoints targeting other Israeli insurers.
Does the API return a full policy history or coverage period, or just a single date check?+
The endpoint is a point-in-time check only. It returns whether coverage was active on the specific event_date supplied — it does not return policy start/end dates, coverage periods, or a history of past policies. You can fork it on Parse and revise it to add a timeline or batch-date endpoint if your use case requires that.
What license number formats are accepted?+
The license_number parameter accepts Israeli vehicle registration numbers between 5 and 8 digits. Numbers outside that range will not produce valid coverage results. The event_date must be in DD/MM/YYYY format; other date formats are not supported.
Page content last updated . Spec covers 1 endpoint from clalbit.co.il.
Related APIs in AutomotiveSee all →
carjam.co.nz API
Look up detailed New Zealand vehicle information by license plate, VIN, or chassis number to instantly access registration status, WOF/COF compliance, service history, odometer readings, and damage records. Verify if a vehicle is stolen and get comprehensive specs to make informed decisions before purchasing or for fleet management.
clutch.ca API
Search and browse thousands of used vehicles across Canada with detailed specs, pricing, and history, then calculate loan payments to find your next car. Access comprehensive vehicle information including photos, available makes and models, and recent offers all in one place.
biluppgifter.se API
Look up Swedish vehicle details, valuations, ownership information, and complete history using registration plates or partial matches. Search by vehicle make, access fleet statistics, and get current market valuations all from the official Swedish vehicle registry.
cheki.co.ke API
Search and browse vehicles on Cheki Kenya's automotive marketplace, view detailed information about specific cars, and discover dealer profiles and inventory. Filter your vehicle search by available metadata to find exactly what you're looking for.
chileautos.cl API
Search car listings and get detailed vehicle information from Chile's largest auto marketplace, including brands, specifications, and pricing. Find your next vehicle by browsing available cars with complete details all in one place.
yad2.co.il API
Search for apartments and cars on Yad2's marketplace and access detailed listing information including photos, prices, and specifications. Instantly reveal seller contact information to connect directly with real estate agents and car dealers.
coches.net API
coches.net API
autochek.africa API
Browse and search car listings from Autochek Kenya's marketplace, view detailed vehicle information including specs and pricing, explore available makes and models, and get instant loan eligibility estimates for your purchase. Discover popular cars, brand new inventory, and connect with dealers all in one place.