# Belgian Company KBO/BCE Lookup

> Belgian Company KBO/BCE Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-14).

Look up Belgian company registration data from KBO/BCE by enterprise number or company name, returning name, VAT number, address, and status

## Facts

- Endpoint: GET https://api.strale.io/x402/belgian-company-data
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-c4d36ffc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lcYC9AgWkaIfQjYD2HTXu

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 api-strale-io-c4d36ffc
```

Example prompt: Can you look up the Belgian company Delhaize Group in the KBO/BCE registry and get me their enterprise number, VAT number, registered address, and current status?

## When to prefer this

Use this endpoint when you need official Belgian company data sourced directly from KBO/BCE, especially when you have an enterprise number for precise lookup or a company name for fuzzy search. Prefer this over generic web search when you need structured, authoritative data fields like VAT number and legal status for Belgian entities specifically.

## Known failure modes

- Company not found in KBO/BCE registry — returns empty or null result
- Invalid enterprise number format — returns error if not in expected format (e.g. 0404.616.494)
- Ambiguous company name with multiple matches — may return first match only
- KBO/BCE source temporarily unavailable — upstream data fetch failure
- Rate limiting or payment failure — 402 payment required if USDC not provided

## How this service works

Look up Belgian company data from the KBO/BCE Crossroads Bank for Enterprises via the CBEAPI.be JSON wrapper. Accepts enterprise number (10 digits, e.g. 0404.616.494), VAT-prefixed form (BE0404170701), or fuzzy company name. Returns name, status, juridica…

## Output

Returns structured Belgian company data including the official company name, KBO/BCE registration number, VAT number, registered address, and active/inactive status — sourced directly from Belgium's Crossroads Bank for Enterprises.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "company_name": "Delhaize Group"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "description": "Alias for company_name"
  },
  "task": {
   "type": "string",
   "description": "Free-text input — first matching enterprise number or name is used"
  },
  "query": {
   "type": "string",
   "description": "Free-text alias — enterprise number or company name"
  },
  "company_name": {
   "type": "string",
   "description": "Belgian company name (fuzzy match)"
  },
  "enterprise_number": {
   "type": "string",
   "description": "KBO/BCE enterprise number (e.g. 0404.616.494)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "status": {
  "type": "string"
 },
 "address": {
  "type": "string"
 },
 "industry": {
  "type": "string"
 },
 "vat_number": {
  "type": "string"
 },
 "abbreviation": {
  "type": "string"
 },
 "company_name": {
  "type": "string"
 },
 "jurisdiction": {
  "type": "string"
 },
 "business_type": {
  "type": "string"
 },
 "commercial_name": {
  "type": "string"
 },
 "registration_date": {
  "type": "string"
 },
 "registration_number": {
  "type": "string"
 },
 "establishments_count": {
  "type": "integer"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-c4d36ffc/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)
