Skip to main content

Verify Company (Simple)

This endpoint allows you to obtain comprehensive data about a company based on its VAT number (with or without "BE" letters before numbers).

You can find more information about the data returned by this endpoint in the documentation.

note

This service is subject to a fee. Each request will be billed accordingly. Ask for a quote to sales@a-cube.io.

Endpoint: GET /verify/company/simple/{id}

where {id} is the VAT number, Company Number or Tax Code of the company you want to search for.

Example:

GET /be/verify/company/simple/BE0123456789

If the request is successful, the response will be a JSON object as follows:

{
"id": "0123456789",
"companyName": "Company name",
"taxCode": "0123456789",
"companyNumber": "0123.456.789",
"establishmentNumber": "1.234.567.890",
"leiCode": "123456ABCD78EFGHIJK90",
"registeredOffice": {
"streetName": "Rue de la Poste 1",
"streetNumber": "1",
"town": "Bruxelles",
"zipCode": "1030",
"country": "BE"
},
"gps": {
"coordinates": [
4.368174,
50.85996
]
},
"activityStatus": "ACTIVE",
"incorporationDate": "2020-01-01",
"lastUpdateTimestamp": 1776174276
}