Documentation
HomeSupportStatusSign in ->
  • Developer guide
  • How it works?
  • Integration Quick Guide
    • Link Flow
    • Embedded Flow
    • Running Workflow
  • Production setup
  • Webhooks
  • Widget
    • Methods
    • Inline mode
  • Postman Collection
  • Changelog
  • Records
    • Introduction
    • Migration Guide: Migrating from Cases to Records
  • TRANSACTIONLINK API
    • API Reference
      • Authentication
      • Cases (deprecated)
      • Resources
      • Parameters
      • Token
      • Link
      • Workflows
      • Records
        • Attachments
    • API Changelog
    • API Versioning
  • Integrations
    • AIS
      • Data fields availability across banks
      • Testing data
    • Autopay
    • BIG Info Monitor
      • Company Report
      • Personal Report
      • Entrepreneur Report
      • Plus Sco Plus CR3 Report
    • BankID
      • 🇳🇴Norway
      • 🇩🇰Denmark
    • CEIDG
      • Get company
      • List companies
    • Companies House
      • Public Data Api
        • Exemptions
        • Persons with significant Control
        • UK Establishments
        • Filing History
        • Registers
        • Registered Office Address
        • Company Profile
        • Officers
        • Insolvency
        • Charges
      • Documents Api
    • ComplyAdvantage
    • ComplyCube
      • Identity Verification
        • Document Check
        • Proof of Address Check
        • Identity Check
      • Document Check
      • AML Screening Check
      • Face Authentication Check
    • Data Ninja
      • Labeling
      • Profiling
      • Scoring
    • eDO App
    • GUS
    • IAML
    • KRD
      • Company Report
      • Personal Report
      • Identity Card Verification
    • mObywatel
      • CitizenDetails
      • CitizenNationality
    • OnDato
    • Polish VAT Whitelist
    • Przelewy 24
    • PWG
    • QARD
    • Rejestr.io
    • Registru Centras
      • Get company
      • List documents
      • Get document
    • Smart-ID
    • SMS API
    • Twilio
    • MojeId
    • Veriff
      • Supported Browsers
    • VIES (Vat Validation)
      • vies
    • Zoho Sign
      • Adding document fields automatically using text tags
    • Idenfy
    • GBG
      • IDScan
      • Verifications
    • Visa
    • KYB
      • Company Profile
    • Handelsregister
      • Company profile
        • List companies
        • Get company
        • Get company documents
    • InfoCamere
      • Company profile
        • List companies
        • List persons
        • Get company
        • Get person
        • Get documents
    • CBE - Belgium Company Register
      • Company profile
        • List companies
        • Get company
        • List documents
        • Get document
    • Transparenzregister
      • Beneficial owners
        • List companies
        • List documents
        • Get documents
    • CVR (Danish Central Business Register)
      • Company profile
        • List Companies
        • Get Company
        • Get document
    • Malta Business Registry
      • Company profile
        • List Companies
        • Get Company
Powered by GitBook
On this page
  • Input
  • Output

Was this helpful?

  1. Integrations
  2. CBE - Belgium Company Register
  3. Company profile

List companies

List companies in registries based on search phrase

Input

User needs to provide search phrase. The search phrase should be detailed enough to find a specific company, results are limited up to 200 companies

Attribute
Type
Description

search

String

Search phrase (at least 3 characters)

Output

Attribute
Type
Description

status

String

The status of the company (Active/Stopped).

companyNumber

String

The company's registration number.

companyName

String

The name of the company.

address

String

The address of the company.

{
  "cbe": [
    {
      "status": "Active",
      "companyNumber": "0402.534.459",
      "companyName": "'Les Grands Voyages Floreffe-Car Cayer et Preud'Homme'",
      "address": "Rue Camille-Giroul 24, 5150 Floreffe"
    },
    {
      "status": "Active",
      "companyNumber": "0406.564.117",
      "companyName": "@VANTAGE 4 YOU",
      "address": "Kleinbeekweg 20, 2970 Schilde"
    },
    {
      "status": "Stopped",
      "companyNumber": "0413.604.139",
      "companyName": "A. et J. Car-Wash société de personnes a responsabilité limitée",
      "address": "Rue des Champs Elysées 18C, 1050 Ixelles"
    },
    {
      "status": "Stopped",
      "companyNumber": "0404.762.192",
      "companyName": "A.T.T. Cleaning Car Wash",
      "address": "Kaai 328 (Zesde Havendok) , 2000 Antwerpen"
    }
  ]
}
PreviousCompany profileNextGet company

Last updated 11 months ago

Was this helpful?