Verify Company (Simple)
This endpoint allows you to obtain basic data about a company based on its VAT number or its fiscal code.
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 business@a-cube.io.
Endpoint: GET /verify/company/simple/{id}
where {id}
is the fiscal code or VAT number WITHOUT the country prefix code.
Example:
GET /verify/company/simple/10442360961
If the request is successful, the response will be a JSON object as follows:
{
"id": "10442360961",
"fiscal_code": "10442360961",
"company_name": "Company name",
"registered_office": {
"address": "VIA ROMA, 1",
"toponym": "VIA",
"street": "ROMA",
"house_number": "1",
"municipality": "MILANO",
"hamlet": "MILANO",
"province": "MI",
"postal_code": "00000"
},
"activity_status": "ATTIVA",
"recipient_code": "ABC1234",
"gps": {
"coordinates": [45.464211, 9.191383]
},
"enrollment_date": "2018-01-01",
"last_update_timestamp": 1686319229
}