惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
爱范儿
爱范儿
P
Proofpoint News Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
Jina AI
Jina AI
B
Blog
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
aimingoo的专栏
aimingoo的专栏
腾讯CDC
C
Check Point Blog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
罗磊的独立博客
B
Blog RSS Feed
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 叶小钗
M
MIT News - Artificial intelligence
GbyAI
GbyAI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Reading Belgium's KBO/CBE registry: what the live API ret...
OpenRegistry · 2026-05-31 · via DEV Community
Cover image for Reading Belgium's KBO/CBE registry: what the live API returns

OpenRegistry

Belgium's Crossroads Bank for Enterprises registers exactly ten digits for every active corporate entity. It formats these as a leading zero followed by nine numbers. This is the enterprise number. Every compliance check on a Belgian vendor must resolve to this unique key. Relying on legacy paid databases is risky because their records are frequently months out of date. We need live data from the official KBO/CBE registry of record to satisfy our auditors.

The raw registry data returned through the OpenRegistry MCP server preserves the exact structure of the Belgian public search. A profile fetch returns the active legal status. This is typically marked as a normal situation or actief in Dutch. It lists the legal form, which will be an SRL or an SA for most merchants. You also get the registered address alongside the NACEBEL industry activity codes. NACEBEL codes are Belgium's specific extension of the European NACE system. Compliance engines can parse these codes directly. This categorisation helps flag businesses operating in high-risk sectors.

The Belgian Ultimate Beneficial Owner registry is managed separately by the Federal Public Service Finance. Accessing this register is no longer straightforward. Following the CJEU ruling in cases C-37/20 and C-601/20 on 22 November 2022, public access was shut down [1]. Belgium codified this restriction via the Royal Decree of 8 February 2023. Now, you must prove a legitimate AML interest to query their UBO database. No open MCP tool can bypass this legal lock. We must design our onboarding workflows around this limitation. Our systems retrieve the public KBO record automatically to verify entity status. We then request signed ownership certificates directly from the corporate officers during onboarding.

Querying the Belgian registry using the OpenRegistry MCP server is highly efficient for developers. You call the server with the standard tools. For basic company lookups, use the company number as the key. This number is universally formatted across Belgian business registries. Here is how a standard tool call is constructed when requesting a profile from the live database:

{
  "name": "get_company_profile",
  "arguments": {
    "jurisdiction": "BE",
    "company_number": "0860136460"
  }
}

You can also query the names of registered directors and legal representatives. The KBO lists these individuals with their appointment dates. Use the get_officers tool on the same enterprise number. The response provides the names of individuals who hold signing authority for the company. This is critical for corporate resolution audits. Here is the schema for the directory query:

{
  "name": "get_officers",
  "arguments": {
    "jurisdiction": "BE",
    "company_number": "0860136460"
  }
}

Our compliance audits require a verifiable link back to the registry of record. We do not use aggregated credit risk reports for identity verification. Regulators expect to see the raw data retrieved directly from KBO/CBE on the exact day of onboarding. Every single lookup is logged with its timestamp. If a merchant is later found to be operating in an unapproved sector, we have the original NACEBEL codes on file. This proof protects our business during annual financial audits.

Belgian companies often register different name variants in multiple languages. This includes official French and Dutch translations. The KBO stores all of these official translations. A company might register as a Société de Responsabilité Limitée in Wallonia but use Besloten Vennootschap in Flanders. Our systems must capture both name variants to prevent duplicate records in our database. The MCP server returns these multilingual names in the raw profile response. We match them against the merchant's bank account details to reduce false positive alerts.

The profile response also includes direct links to Moniteur Belge publications. The Moniteur Belge is the official state gazette where Belgian companies publish corporate changes. If we see a mismatch in our automated directors check, our compliance analyst can click the gazette link. This allows them to manually review the scanned PDF of the original deed. This hybrid flow saves hours of research time. It combines automated retrieval with direct access to official sources.

For KYC engineers looking to integrate live Belgian registry data into their tool chains, the OpenRegistry server provides a reliable route. You can begin querying the KBO/CBE registry and sibling European databases by visiting the documentation at openregistry.sophymarine.com. The anonymous tier allows you to test queries without an upfront signin. This is the fastest way to verify if your compliance systems can handle raw Belgian corporate records.