# Sirenic Belgian Company Registry Lookup (KBO/BCE)

> Sirenic Belgian Company Registry Lookup (KBO/BCE) is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Looks up a Belgian company by its 10-digit KBO/BCE enterprise number and returns legal details, activities, VAT number, LEI, and establishment units from the official Belgian register.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/BE/:id
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-belgian-company-registry-lookup-kbo-bce-d536c965
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q6ITDgrLE-WE2RE3me5ST

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 sirenic-belgian-company-registry-lookup-kbo-bce-d536c965
```

Example prompt: Can you pull up the official KBO/BCE registry details for Belgian company number 0403199702 — I need the legal name, status, registered address, VAT number, and NACEBEL activities?

## When to prefer this

Use this endpoint when you specifically need official Belgian company data from the KBO/BCE register, including legal form, NACEBEL sector codes, establishment units, VAT number, or LEI. Prefer this over generic EU company search when you already have the Belgian enterprise number and need authoritative, daily-refreshed government data for compliance, KYC, or supplier verification purposes.

## Known failure modes

- Invalid or malformed enterprise number (not 10 digits, contains dots/spaces) — returns 400 or validation error
- Enterprise number not found in KBO/BCE — returns 404
- KBO/BCE data source temporarily unavailable — returns 503
- Number format includes dots or spaces instead of plain digits — rejected by path parameter validation

## How this service works

Official Belgian company registry lookup (KBO/BCE, Banque-Carrefour des Entreprises / Kruispuntbank van Ondernemingen). Query: /v1/eu/entreprise/BE/0403199702 (10-digit enterprise number, with or without dots). Returns legal name, legal form, normalized status, incorporation date, registered office, NACEBEL activities with French labels, the establishment-unit list, VAT number and LEI, plus a link to the official register entry — Belgian company data from KBO/BCE open data, refreshed daily.

## Output

Returns a structured object with the company's legal name, legal form, normalized status (e.g. active/inactive), incorporation date, registered office address, NACEBEL activity codes with French labels, a list of establishment units, VAT number, LEI code, and a direct link to the official KBO/BCE register entry.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Belgian enterprise number (KBO/BCE), 10 digits, NO dots or spaces, e.g. 0403170701"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/sirenic-belgian-company-registry-lookup-kbo-bce-d536c965/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.sirenic.eu](https://www.zero.xyz/host/api.sirenic.eu/llms.txt)
