# List enterprises Source: https://docs.jaarrekening.be/api-reference/endpoint/get-enterprises GET /enterprises List enterprises, optionally narrowed by an exact name or number match. The `search` parameter here matches exactly: a multi-word value must appear in the company name as a contiguous, correctly spelled substring, and a numeric value is matched as a prefix of the enterprise number. It does not tolerate typos or reordered words. For free text a user typed, use `GET /search` instead. # Details Source: https://docs.jaarrekening.be/api-reference/endpoint/get-enterprises-{search} GET /enterprises/{search} Get details for a single enterprise. # Activities Source: https://docs.jaarrekening.be/api-reference/endpoint/get-enterprises-{search}-activities GET /enterprises/{search}/activities Get all NACE2025 activities for an enterprise. # Directors Source: https://docs.jaarrekening.be/api-reference/endpoint/get-enterprises-{search}-directors GET /enterprises/{search}/directors Get directors from annual reports. # Establishments Source: https://docs.jaarrekening.be/api-reference/endpoint/get-enterprises-{search}-establishments GET /enterprises/{search}/establishments Get all establishments (branches/locations) for an enterprise. # Financials Source: https://docs.jaarrekening.be/api-reference/endpoint/get-enterprises-{search}-financials GET /enterprises/{search}/financials Get financial reports by year. # Investments Source: https://docs.jaarrekening.be/api-reference/endpoint/get-enterprises-{search}-investments GET /enterprises/{search}/investments Get participations and investments. # Investors Source: https://docs.jaarrekening.be/api-reference/endpoint/get-enterprises-{search}-investors GET /enterprises/{search}/investors Get companies that have invested in this enterprise (shareholders). # Lookalikes Source: https://docs.jaarrekening.be/api-reference/endpoint/get-enterprises-{search}-lookalikes GET /enterprises/{search}/lookalikes Get similar companies based on various criteria. # Publications Source: https://docs.jaarrekening.be/api-reference/endpoint/get-enterprises-{search}-publications GET /enterprises/{search}/publications Get official gazette publications (Belgisch Staatsblad) for an enterprise. Results are paginated. # Search Source: https://docs.jaarrekening.be/api-reference/endpoint/get-search GET /search Fuzzy company search, the same engine that powers the search box on jaarrekening.be. Tolerates typos, ignores word order and matches the last word as a prefix, so partial input while a user is still typing resolves to the right company. Use this endpoint to turn what a user typed into an enterprise number. Use `GET /enterprises` instead when you already have an exact name or number and want a filterable, paginated list. Purely numeric input is matched against the enterprise number rather than the name. Separators are ignored, so `BE0867441056`, `0867.446.056` and `0867 446 056` are equivalent. Results are ranked by relevance and are not paginated. This is the endpoint to use when a person is typing a company name. It is the same search engine that powers the search box on jaarrekening.be, so it tolerates typos, ignores word order, and matches the last word as a prefix. `GET /enterprises` matches exactly instead. Searching `colruit group` there returns nothing, because no company name contains that exact text. Here it returns **Colruyt Group**, the company the user meant. ## Which endpoint should I use? | You have | Use | | --------------------------------------------- | --------------------------- | | Free text a user typed | `GET /search` | | An exact name or enterprise number | `GET /enterprises/{search}` | | A filter and you want to page through results | `GET /enterprises` | Once you have a `number` from this endpoint, pass it to any of the `/enterprises/{search}/…` endpoints to pull financials, directors and the rest. # Introduction Source: https://docs.jaarrekening.be/api-reference/introduction Access Belgian enterprise data including financials, directors, and participations. To use this API, you must authenticate using a Bearer token created via your account settings on Jaarrekening.be. ## Welcome Welcome to the official API documentation for **Jaarrekening.be** — the trusted source for Belgian enterprise data.\ This API provides programmatic access to company information, financial figures, legal representatives, and investments based on official annual reports. The API is built using the [OpenAPI 3.1 specification](https://mintlify.com/docs/api-playground/openapi/setup) and fully supports Mintlify’s interactive playground. ## Base URL ```txt theme={null} https://jaarrekening.be/api/v1/ ```