Verify Company
This endpoint allows you to obtain comprehensive data about a company based on its VAT number or its fiscal code. You can obtain the following details for a company:
- Company's full name
- Address and contact details
- Business activity information
- Company members and their details
- 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 business@a-cube.io.
Endpoint: GET /verify/company/{id}
where {id}
is the fiscal code or VAT number WITHOUT the country prefix code.
Example:
GET /verify/company/10442360961
If the request is successful, the response will be a JSON object as follows:
{
"detail": {
"rea": "123456",
"cciaa": "RM",
"ateco_code": "1234",
"ateco_description": "Produzione di software",
"legal_nature_code": "SR",
"start_date": "2018-10-10",
"pec": "pec@mail.com",
"financial_statements": {
"2017": {
"closing_date": "2017-12-31",
"revenue": 111111,
"profit": 1111,
"employees": null,
"share_capital": null
},
"2018": {
"closing_date": "2018-12-31",
"revenue": 222222,
"profit": 2222,
"employees": null,
"share_capital": null
},
"2019": {
"closing_date": "2019-12-31",
"revenue": 333333,
"profit": 3333,
"employees": 4,
"share_capital": 30000
},
"2020": {
"closing_date": "2020-12-31",
"revenue": 444444,
"profit": 4444,
"employees": 5,
"share_capital": 50000
}
},
"vat_group": {
"participation": false,
"is_head_of_group": false,
"is_data_validated": false
},
"ceased": false,
"partners": [
{
"company_name": "Company name",
"name": null,
"surname": null,
"partner_fiscal_code": null,
"dues": 100
}
]
},
"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
}