# Dutch Vehicle Lookup by Kenteken

> Dutch Vehicle Lookup by Kenteken 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-13).

Looks up Dutch vehicle registration details (fuel type, APK status, and more) by license plate (kenteken)

## Facts

- Endpoint: POST https://api.agenticweb.nl/api/v1/nl/vehicle
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dutch-vehicle-lookup-by-kenteken-7aa4c04e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iX21epY0rKdcQBHAwCVqh

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-7aa4c04e -d '<json body>'
```

Example prompt: Can you look up the Dutch vehicle registration details for license plate GH-123-ZR — I want to know the fuel type and when the APK expires?

## When to prefer this

Use this endpoint when you need to look up Dutch vehicle details by license plate (kenteken), especially for fuel type, APK status, or other registration data specific to the Netherlands. Prefer this over manual RDW lookups when you need programmatic, pay-per-use access.

## Known failure modes

- Invalid or unrecognized kenteken returns an error or empty result
- Missing required query parameter returns a validation error
- Payment not completed returns a 402 Payment Required response
- Network timeout or service unavailability returns a 5xx error

## How this service works

Dutch vehicle lookup by kenteken (registration, fuel, APK). Send the kenteken in a JSON request body via POST. Payment constitutes acceptance of the terms at https://agenticweb.nl/terms.

## Output

Returns vehicle registration data for the given Dutch kenteken, including fuel type, APK (vehicle inspection) expiry date, and other registration details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "kenteken": {
   "type": "string",
   "description": "Plate, in the JSON request body. Case/format-insensitive (e.g. 0001TJ)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "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-7aa4c04e/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)
