# pogo-tb.nl APK Alert — Dutch Vehicle MOT Expiry Check

> pogo-tb.nl APK Alert — Dutch Vehicle MOT Expiry Check is a paid API for AI agents from api.pogo-tb.nl, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns the APK (Dutch MOT) expiry risk band and days remaining for a Dutch vehicle license plate

## Facts

- Endpoint: GET https://api.pogo-tb.nl/v1/apk-alert/%7Bplate%7D
- Price: $0.001/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-apk-alert-dutch-vehicle-mot-expiry-check-9cca23fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6xLxNx1BPgVvea5rxaT4O

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-apk-alert-dutch-vehicle-mot-expiry-check-9cca23fa
```

Example prompt: Can you check how many days are left on the APK for Dutch license plate 12-ABC-3 and tell me whether it's at risk of expiring soon?

## When to prefer this

Use this endpoint when you need a quick, structured risk assessment of a Dutch vehicle's APK (MOT) expiry by license plate — particularly when you want a pre-computed risk_band label rather than raw RDW data. Ideal for fleet management agents, pre-purchase checks, or automated compliance monitoring. Prefer this over raw RDW API calls when you need pay-per-call pricing with no subscription and x402 micropayment support.

## Known failure modes

- Invalid or malformed license plate (too short/long) returns an error — plate must be 4–8 characters
- Plate not found in RDW database returns no data or 404
- Payment not completed via x402/USDC results in 402 response with preview only
- RDW upstream data unavailable causes service error
- Plate belongs to a vehicle category not tracked for APK (e.g. trailers) may return empty data

## 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 with a risk_band field (e.g. 'ok') indicating the urgency of the APK expiry, and a days_until_apk integer showing how many days remain until the Dutch vehicle's roadworthiness certificate expires. Also includes an attribution string crediting 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": {
   "risk_band": "ok",
   "days_until_apk": 298
  },
  "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-apk-alert-dutch-vehicle-mot-expiry-check-9cca23fa/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)
