# Strale KYB Essentials Belgium

> Strale KYB Essentials Belgium is a paid API for AI agents from api.strale.io, paid per call via x402, $1.62/call, status unknown (last checked 2026-09-15).

Look up essential Know Your Business (KYB) data for a Belgian company using its enterprise number from official Belgian sources.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/kyb-essentials-be
- Price: $1.62/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-kyb-essentials-belgium-32328c38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gBGYonO7SeVhgjoSi6Ec9

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 strale-kyb-essentials-belgium-32328c38 -d '<json body>'
```

Example prompt: Can you pull the official KYB details for Belgian company with enterprise number 0123456789 — I need to verify they're legitimately registered before we sign a contract with them.

## When to prefer this

Use this endpoint when you specifically need to verify or enrich data about a Belgian-registered company using its enterprise number. It is ideal for KYB compliance workflows, supplier onboarding, or due diligence on Belgian entities. Prefer it over generic web search when you need structured, authoritative, audit-trailed company data directly from official Belgian sources.

## Known failure modes

- Invalid enterprise number format returns a validation error
- Unknown or deregistered enterprise number returns no data found
- Malformed request body returns 400 error
- Payment failure via x402 returns 402 Payment Required
- Service unavailability returns 503 with retry guidance

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns structured KYB data for the Belgian company including legal name, legal form, enterprise number, registration status (active/inactive), registered address, VAT registration details, and incorporation date, along with a cryptographic audit record for compliance purposes.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "required": [
      "enterprise_number"
     ],
     "properties": {
      "vat_number": {
       "type": "string",
       "description": "EU VAT number with country prefix (e.g. ATU14189108). Optional — used for VIES validation when the registry lookup does not return one (e.g. AT, SK); auto-derived from registry data where possible."
      },
      "enterprise_number": {
       "type": "string",
       "description": "Belgian enterprise number"
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-kyb-essentials-belgium-32328c38/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
