# Carjam — 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.

> 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.

**Category:** Automotive | **Website:** [carjam.co.nz/](https://carjam.co.nz/) | **Docs:** [parse.bot/marketplace/97153781-1d6c-4018-9d93-1883fbfc3a85/carjam-co-nz-api](https://parse.bot/marketplace/97153781-1d6c-4018-9d93-1883fbfc3a85/carjam-co-nz-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-carjam-co-nz-api-97153781/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### vehicle_lookup

Look up a vehicle by plate number, VIN, or chassis number. Returns comprehensive vehicle information including registration, fitness (WOF/COF), licensing, odometer history, and damage records from the NZ Motor Vehicle Register. At least one identifier must be provided.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `chassis` | string | No | Chassis number. At least one of plate, vin, or chassis must be provided. |
| `plate` | string | No | NZ vehicle plate number (e.g. HGS941). At least one of plate, vin, or chassis must be provided. |
| `vin` | string | No | Vehicle Identification Number. At least one of plate, vin, or chassis must be provided. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-carjam-co-nz-api-97153781/vehicle_lookup \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"chassis":"<string>","plate":"<string>","vin":"<string>"}'
```
