# Dutch Vehicle Lookup by Kenteken (License Plate)

> Dutch Vehicle Lookup by Kenteken (License Plate) is a paid API for AI agents from api.agenticweb.nl, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns registration details, APK (roadworthiness) status, fuel/emissions data, and open recalls for a Dutch vehicle identified by its license plate (kenteken).

## Facts

- Endpoint: GET https://api.agenticweb.nl/api/v1/nl/vehicle/g545gr
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dutch-vehicle-lookup-by-kenteken-license-plate-e1f48988
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4xvu58nmH1gCvd90IHE2m

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability dutch-vehicle-lookup-by-kenteken-license-plate-e1f48988
```

Example prompt: Can you look up the Dutch vehicle with license plate G545GR and tell me when its APK expires, what fuel type it uses, and whether there are any open recalls?

## When to prefer this

Use this endpoint when you need to resolve a Dutch (Netherlands) vehicle license plate (kenteken) to its full registration record, including APK roadworthiness status, emissions/fuel data, and recall information. It is the right choice for Dutch vehicle lookups specifically, not for German, Belgian, or other European plates.

## Known failure modes

- Invalid or non-existent kenteken returns an error or empty vehicle object
- Recalls data temporarily unavailable returns recalls_status: 'unavailable'
- Malformed license plate format may return 400 or empty response
- Payment not processed results in 402 Payment Required response
- Rate limiting or quota exceeded returns 429 error

## How this service works

Dutch vehicle lookup by kenteken (registration, fuel, APK). Payment constitutes acceptance of the terms at agenticweb.nl/terms.

## Output

Returns a JSON object with: kenteken (the queried plate), vehicle object (brand, model, type, colour, first admission date, seats, mass, catalog price), apk object (expiry date and expired flag), fuel array (per-fuel CO2, consumption, EV range figures), recalls array (open and handled terugroepacties), and recalls_status ('ok' or 'unavailable').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "apk": {
   "type": "object",
   "description": "APK (roadworthiness) expiry and expired flag."
  },
  "fuel": {
   "type": "array",
   "description": "Per-fuel figures (CO2, consumption, EV range)."
  },
  "recalls": {
   "type": "array",
   "description": "Open/handled recalls (terugroepacties)."
  },
  "vehicle": {
   "type": "object",
   "description": "Registration basics: type, brand, model, colour, first admission, seats, mass, catalog price."
  },
  "kenteken": {
   "type": "string"
  },
  "recalls_status": {
   "enum": [
    "ok",
    "unavailable"
   ],
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dutch-vehicle-lookup-by-kenteken-license-plate-e1f48988/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agenticweb.nl](https://www.zero.xyz/host/api.agenticweb.nl/llms.txt)
