# Pogo-TB Dutch Vehicle (Kenteken) Lookup — RDW APK Pack

> Pogo-TB Dutch Vehicle (Kenteken) Lookup — RDW APK Pack is a paid API for AI agents from api.pogo-tb.nl, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns Dutch vehicle registration details and APK (roadworthiness inspection) status for a given license plate using RDW open data.

## Facts

- Endpoint: GET https://api.pogo-tb.nl/v1/pack/auto/JZ597N
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pogo-tb-dutch-vehicle-kenteken-lookup-rdw-apk-pack-f6291609
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JTvZv-LnhQjtV56mwIb5u

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-dutch-vehicle-kenteken-lookup-rdw-apk-pack-f6291609
```

Example prompt: Can you look up the Dutch vehicle registration and APK inspection status for license plate JZ597N — I want to know the car's brand and how many days until the APK expires?

## When to prefer this

Use this endpoint when you need quick, pay-per-call access to Dutch RDW vehicle registration and APK status data without a subscription, especially in agent workflows that handle Dutch license plates. It is preferable over direct RDW API integration when you need a pre-packaged composite response (vehicle record + APK risk) with micropayment access via x402 USDC on Base.

## Known failure modes

- Invalid or malformed license plate (too short/long) returns a validation error
- Unknown or unregistered plate returns no vehicle record
- Payment not fulfilled (x402) results in a 402 response requiring USDC payment on Base
- Plate parameter missing returns a 400 bad request
- RDW upstream data unavailable may cause a 503 or empty response

## 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 the vehicle's brand (merk) and kenteken (license plate), plus APK inspection data including a risk band (e.g. 'ok') and the number of days remaining until the next APK is due, along with a data attribution string referencing RDW open data.

## 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": {
   "apk": {
    "risk_band": "ok",
    "days_until_apk": 298
   },
   "vehicle": {
    "merk": "MITSUBISHI",
    "kenteken": "JZ597N"
   }
  },
  "attribution": "Sources: RDW open data (CC0 1.0). Composite pack: vehicle record + APK risk."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pogo-tb-dutch-vehicle-kenteken-lookup-rdw-apk-pack-f6291609/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)
