# Dutch Supplier Screening — VAT, Insolvency & Name Check

> Dutch Supplier Screening — VAT, Insolvency & Name Check 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-15).

Pre-transaction Dutch supplier screen: validates EU VAT number via VIES, checks the Dutch Central Insolvency Register, and cross-checks the legal name against the VAT-registered name — all in one call.

## Facts

- Endpoint: POST https://agentdata-api.sander-van-aard.workers.dev/nl/supplier-screen
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dutch-supplier-screening-vat-insolvency-name-check-931f34f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W06CWh7FSc_7uwBNc3ksB

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-supplier-screening-vat-insolvency-name-check-931f34f3 -d '<json body>'
```

Example prompt: Before we pay this Dutch supplier, can you screen Bouwbedrijf de Vries BV — KVK number 12345678, VAT number NL123456789B01 — and check whether they're active on the Dutch insolvency register and whether their VAT registration name matches?

## When to prefer this

Use this endpoint when you need a combined Dutch supplier pre-transaction check that simultaneously validates the EU VAT number, checks insolvency status via the official Dutch register, and verifies the legal name — saving three separate API calls. Prefer this over generic KVK lookups or standalone VAT checkers when the goal is supplier onboarding compliance or payment risk mitigation for Dutch counterparties specifically.

## Known failure modes

- VAT number format invalid — VIES lookup not attempted
- KVK or legal name not found in insolvency register
- One register unavailable — call not charged but partial results returned
- Missing required fields (legal_name, kvk_number, vat_number) — 400 error
- VIES service temporarily down — partial result with source error noted

## How this service works

Dutch supplier screening — pre-transaction check in one call: validates the EU VAT number (VIES), checks the official Dutch Central Insolvency Register for bankruptcy, suspension of payments or debt restructuring, and cross-checks the legal name against the VAT-registered name where available. Requires legal_name, kvk_number and vat_number. Returns factual attention items with a source reference per finding — no risk scores. Only charged when both registers were consulted. Companies only.

## Output

A list of factual attention items, each with a source reference, covering: VIES VAT validity and registered name match, any active insolvency proceedings (bankruptcy, suspension of payments, or WSNP debt restructuring) from the Dutch Central Insolvency Register. No risk scores are assigned — only factual findings per source. Charged only when both registers were successfully consulted.

## 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-supplier-screening-vat-insolvency-name-check-931f34f3/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)
