# pogo-tb.nl RDW Kenteken Lookup

> pogo-tb.nl RDW Kenteken Lookup is a paid API for AI agents from api.pogo-tb.nl, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Looks up Dutch vehicle registration (kenteken) data from the RDW open dataset by license plate number, returning make, model, and related attributes.

## Facts

- Endpoint: GET https://api.pogo-tb.nl/v1/kenteken/%7Bplate%7D
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pogo-tb-nl-rdw-kenteken-lookup-b8166586
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ExxnustCk617g3wb3w1Ew

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 pogo-tb-nl-rdw-kenteken-lookup-b8166586
```

Example prompt: Can you look up the Dutch vehicle registration details for license plate JZ597N? I want to know the make and any other info from the RDW database.

## When to prefer this

Choose this endpoint when you need quick, pay-per-call access to Dutch RDW vehicle registration data by license plate with no subscription required. It is ideal for agents needing on-demand, single-plate lookups via x402 micropayments (USDC on Base) without committing to a bulk data contract. Prefer it over building a direct RDW open data integration when you want a ready-made JSON API with attribution handling included.

## Known failure modes

- Invalid or malformed plate number (too short/long) returns an error
- Plate not found in RDW database returns empty or 404 response
- Payment not completed via x402 results in 402 Payment Required response blocking full data
- Rate limiting or network errors may return 5xx responses
- Plate format outside 4–8 character constraint is rejected by schema validation

## How this service works

Pay-per-call Dutch RDW kenteken and BAG address APIs for AI agents. Free previews; full JSON via x402 USDC on Base.

## Output

A JSON object containing vehicle registration data sourced from RDW open data, including at minimum the vehicle make (merk) and license plate (kenteken), plus an attribution string crediting the RDW CC0 dataset. Additional vehicle fields may be present depending on what RDW exposes for that plate.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "plate": {
       "type": "string",
       "maxLength": 8,
       "minLength": 4
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "plate": {
       "type": "string",
       "maxLength": 8,
       "minLength": 4
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object"
      },
      "attribution": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "merk": "MITSUBISHI",
   "kenteken": "JZ597N"
  },
  "attribution": "Source: RDW open data (opendata.rdw.nl), CC0 1.0. Not affiliated with RDW."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pogo-tb-nl-rdw-kenteken-lookup-b8166586/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.pogo-tb.nl](https://www.zero.xyz/host/api.pogo-tb.nl/llms.txt)
