# pogo-tb.nl Dutch RDW Vehicle Plate Comparison

> pogo-tb.nl Dutch RDW Vehicle Plate Comparison is a paid API for AI agents from api.pogo-tb.nl, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-13).

Compares two Dutch vehicle license plates side-by-side, returning RDW registration data (brand, plate) for each via the Dutch open data registry.

## Facts

- Endpoint: GET https://api.pogo-tb.nl/v1/compare/kenteken
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pogo-tb-nl-dutch-rdw-vehicle-plate-comparison-7b1b1b54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cG5tt2n58SwLJ7W8z4cyZ

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-dutch-rdw-vehicle-plate-comparison-7b1b1b54
```

Example prompt: Can you compare the Dutch license plates JZ597N and GZS80K — pull up the RDW registration details for both and tell me what brands they are?

## When to prefer this

Choose this endpoint when you need to look up and compare RDW registration data for exactly two Dutch license plates in a single API call rather than making two separate single-plate lookups. Ideal for side-by-side vehicle comparisons, fleet audits, or dual-plate verification workflows where efficiency matters. Prefer this over a single-plate endpoint when the user's intent involves contrasting or validating two vehicles at once.

## Known failure modes

- Invalid or non-existent plate number returns empty or error data for that entry
- Missing plate1 or plate2 query parameters returns a 400-level validation error
- Payment not completed (x402) returns a 402 Payment Required response with only free preview data
- Rate limiting or service unavailability returns 5xx errors
- Non-Dutch license plate formats may not be found in the RDW registry

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

Returns a JSON object with a 'data' key containing two sub-objects (plate1 and plate2), each holding the 'kenteken' (plate number) and 'merk' (vehicle brand/make) as recorded in the Dutch RDW open data registry. Also includes an attribution string crediting RDW open data under CC0 1.0 license.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "plate1": {
    "merk": "TESLA",
    "kenteken": "JZ597N"
   },
   "plate2": {
    "merk": "MITSUBISHI",
    "kenteken": "GZS80K"
   }
  },
  "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-dutch-rdw-vehicle-plate-comparison-7b1b1b54/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)
