# Pogo-TB APK Alert — Dutch Vehicle Inspection Expiry Check

> Pogo-TB APK Alert — Dutch Vehicle Inspection 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-15).

Returns the APK (Dutch vehicle inspection) expiry risk band and days remaining for a given Dutch license plate number.

## Facts

- Endpoint: GET https://api.pogo-tb.nl/v1/apk-alert/JZ597N
- Price: $0.001/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-apk-alert-dutch-vehicle-inspection-expiry-check-cc9d24ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lzvAjjWszT6TV_oEXJYce

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-apk-alert-dutch-vehicle-inspection-expiry-check-cc9d24ae
```

Example prompt: Can you check how many days are left before the APK expires for my Dutch car with license plate JZ597N, and tell me if it's in a risk zone?

## When to prefer this

Use this endpoint when you need a fast, cheap, pay-per-call lookup of Dutch APK (vehicle inspection) expiry status for a specific license plate, especially in agent workflows that need machine-readable risk classification without parsing raw RDW datasets. Prefer this over direct RDW open data access when you want a structured JSON response with a risk band classification, or when building automated fleet monitoring and compliance alerts for Dutch-registered vehicles.

## Known failure modes

- Invalid or malformed license plate returns an error or empty data
- Plate not found in RDW registry (e.g. foreign or unregistered vehicle) returns no result
- Plate parameter missing causes a 400-level validation error
- Payment not completed via x402/USDC returns a 402 Payment Required response with only a free preview

## 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 'risk_band' (e.g. 'ok') indicating how urgent the APK renewal is, and 'days_until_apk' (integer) showing how many days remain until the vehicle's APK inspection expires, plus 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-apk-alert-dutch-vehicle-inspection-expiry-check-cc9d24ae/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)
