# Clalbit — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Verify vehicle insurance coverage status in real-time by entering a license number and date to check if a vehicle has active insurance with Clal Insurance. Instantly confirm insurance validity and coverage details for any registered vehicle.

**Category:** Automotive | **Website:** [clalbit.co.il/](https://clalbit.co.il/) | **Docs:** [parse.bot/marketplace/9af49731-64f9-4e15-8b80-c6b953d59aa8/clalbit-co-il-api](https://parse.bot/marketplace/9af49731-64f9-4e15-8b80-c6b953d59aa8/clalbit-co-il-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-clalbit-co-il-api-9af49731/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### check_vehicle_insurance_status

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_date` | string | Yes | Date to check coverage for, in DD/MM/YYYY format. |
| `license_number` | string | Yes | Vehicle registration number (5-8 digits). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-clalbit-co-il-api-9af49731/check_vehicle_insurance_status \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_date":"<string>","license_number":"<string>"}'
```
