# Dutch Insolvency Register Check (Central Insolvency Register / rechtspraak.nl)

> Dutch Insolvency Register Check (Central Insolvency Register / rechtspraak.nl) is a paid API for AI agents from agentdata-api.sander-van-aard.workers.dev, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Checks a Dutch company against the official Central Insolvency Register (rechtspraak.nl) for bankruptcy, suspension of payments, or debt restructuring procedures

## Facts

- Endpoint: POST https://agentdata-api.sander-van-aard.workers.dev/nl/insolvency
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dutch-insolvency-register-check-central-insolvency-register-aa27d167
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LoZrHilS7YK52e5Pijq7M

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 dutch-insolvency-register-check-central-insolvency-register-aa27d167 -d '<json body>'
```

Example prompt: Can you check whether the Dutch company with KVK number 12345678 has any active bankruptcy, suspension of payments, or debt restructuring proceedings in the official Central Insolvency Register?

## When to prefer this

Use this endpoint when you need to verify Dutch company insolvency status against the official government source (rechtspraak.nl) rather than a third-party data aggregator. It is the authoritative check for faillissement, surseance van betaling, and WSNP procedures. Best suited for pre-transaction due diligence on Dutch suppliers, counterparty risk checks, or KYB workflows involving Dutch entities. Prefer over generic business data APIs when you need legally authoritative Dutch insolvency data with an explicit source reference.

## Known failure modes

- Company not found in register — returns no_match, which may mean genuinely no insolvency or that the record is outside the searchable window
- KVK number invalid or unrecognized format — validation error returned
- Upstream rechtspraak.nl registry unavailable — service may return an error or degraded response
- Natural persons / individuals are out of scope — endpoint is for companies only
- Historical insolvency records beyond the register's retention period may not be found

## How this service works

Dutch bankruptcy and insolvency check against the official Central Insolvency Register of the Dutch judiciary (rechtspraak.nl). Detects published bankruptcy (faillissement), suspension of payments (surseance) and debt restructuring procedures. Best results with a KVK number. Returns procedure type, status, dates, court and a source reference per match, with explicit match-basis and coverage notes. A no_match means no publication in the currently searchable register. Companies only.

## Output

Returns the insolvency procedure type (faillissement, surseance van betaling, or WSNP/debt restructuring), current status, relevant dates, the court handling the procedure, a source reference back to rechtspraak.nl, an explicit match basis explaining why the result matched, and coverage notes clarifying any limitations of the searchable register. A no_match result means no publication was found in the currently searchable register.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dutch-insolvency-register-check-central-insolvency-register-aa27d167/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.sander-van-aard.workers.dev](https://www.zero.xyz/host/agentdata-api.sander-van-aard.workers.dev/llms.txt)
