Skip to main content

Verify Company

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 obtain the following details for a company:

  • Company's full name
  • Address and contact details
  • International classification
  • Financial data

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/{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/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,
"detail": {
"contacts": {
"fax": "+32 123 456 789",
"phone": "+32 123 456 789",
"website": "www.example.com"
},
"internationalClassification": {
"nace": {
"code": "6201",
"description": "Computer programming activities"
},
"naics": {
"code": "541511",
"description": "Custom Computer Programming Services"
},
"sic": {
"code": "7371",
"description": "Computer Programming Services"
}
},
"financialStatements": {
"2024": {
"closingDate": "2024-01-26",
"revenue": 12046000,
"profit": -1123000,
"employees": 20,
"equity": -506230,
"totalAssets": 16956000
},
"2023": {
"closingDate": "2023-01-28",
"revenue": 12046000,
"profit": -1123000,
"employees": 20,
"equity": -506230,
"totalAssets": 16956000
},
"2022": {
"closingDate": "2022-01-29",
"revenue": 12046000,
"profit": 1123000,
"employees": 20,
"equity": 506230,
"totalAssets": 16956000
}
}
}
}