€13.70 + VAT
Official Chamber of Commerce certificates from all Italian companies available via API. Available in digital format or on watermarked CCIAA paper with an oleographic countermark.
The Chamber of Commerce Certificate is an official document issued by the Chamber of Commerce and has legal certification value.
The Certificate certifies the company's registration in the Business Register and includes the following data about the company:
Through our APIs, it is possible to obtain all types of Chamber of Commerce Certificates:
Additionally, a number of options are available:
It is possible to request Chamber of Commerce Certificates only for companies registered with the Chamber of Commerce. The Certificate, in fact, certifies the company's registration in the Business Register and the R.E.A. of the Chamber of Commerce, has certification value and is enforceable against third parties. It is valid for 6 months.
GET /visure
To request Chamber of Commerce Certificates with Visengine, you first need to identify the hash that uniquely identifies each document or practice.
https://visengine2.altravia.com/visure/
This can be done via the endpoint GET /visure which requires no parameters and will return a complete list of documents and practices that can be requested via Visengine and their corresponding hashes.
GET /visure/{hash_visura}
To verify the information, required documents, and costs of the Certificate, you need to make a request via the endpoint GET /visure/{hash_visura} and pass the hash of the certificate obtained previously.
GET /visure/{hash_visura}
To check fields and costs to complete the request, we should use the hash we obtained in the previous request.
https://visengine2.altravia.com/visure/fab482bf67a418f00d596b7296750a9a
GET /visure/{hash_visura}
The response will indicate all the necessary information to complete the certificate request, such as required fields.
{
"data": {
"hash_visura": "fab482bf67a418f00d596b7296750a9a",
"json_struttura": {
"campi": {
"$0": {
"nome": "Codice fiscale o partita IVA",
"tipo": "codice_fiscale",
"null": false,
"istruzioni": "Codice Fiscale o partita iva della società",
"ordine": "1"
},
"$1": {
"nome": "Denominazione sociale",
"tipo": "denominazione",
"null": false,
"istruzioni": "Nome esatto della società (non inserire il tipo di società es. srl, spa etc.)",
"ordine": "0"
},
"$2": {
"nome": "Provincia",
"tipo": "cod_provincia",
"null": false,
"istruzioni": "Provincia della sede legale della società",
"ordine": "2"
},
"$3": {
"nome": "Indirizzo completo di spedizione per la consegna del Certificato in versione cartacea",
"tipo": "testo",
"null": false,
"istruzioni": "Inserire Indirizzo Completo di Spedizione con nome destinatario, via e civico, comune, CAP. La spedizione è inclusa nel prezzo",
"ordine": "4"
},
"$4": {
"nome": "Numero Telefonico per essere ricontattati",
"tipo": "testo",
"null": false,
"istruzioni": "Inserire numero telefonico dove essere ricontattati per problemi o per la consegna del Certificato",
"ordine": "5"
},
"$5": {
"nome": "Destinatario Spedizione",
"tipo": "testo",
"null": false,
"istruzioni": "Nome destinatario spedizione",
"ordine": "3"
}
},
"validazione": "($0 && $3 && $4 && $5) || ($1 && $2 && $3 && $4 && $5) || ($0) || ($1 && $2)",
"istruzioni": "",
"istruzioni_ricerca": ""
},
"nome_categoria": "Camerali",
"nome_visura": "Certificato di iscrizione",
"opzioni": [
{
"tipo": "urgenza",
"prezzo": 6.7,
"nome": "opzione_0"
},
{
"tipo": "stampa_filigranata/spedizione",
"prezzo": 7.9,
"nome": "opzione_1"
},
{
"tipo": "vigenza",
"prezzo": 3,
"nome": "opzione_2"
},
{
"tipo": "inglese",
"prezzo": 3,
"nome": "opzione_3"
}
],
"prezzo_ricerca": 0,
"prezzo_visura": 13.7,
"ricerca": false,
"sincrona": false,
},
"success": true,
"message": "",
"error": null
}
In the validation step, mandatory data are specified to successfully complete the request. For the Company Chamber Certificate product, it is possible to use different data combinations.
POST /request
In our example, to complete the certificate request, we chose to provide the company's VAT number.
POST /request
{
"hash_visura": "fab482bf67a418f00d596b7296750a9a",
"json_visura": {
"$1": 12485671007
}
}
POST /request
The response provides several pieces of information, including the status, callback setting, and request ID, which will be needed later to download the document.
{ "data":
{
"_id": "5f2829ce065afc21cc60ad0e",
"state": 1,
"hash_visura": "fab482bf67a418f00d596b7296750a9a",
"nome": "Certificato di iscrizione ",
"ricerca": false,
"id_ricerca": null,
"prezzo_visura": 13.7,
"prezzo_ricerca": 0,
"indice_ricerca": null,
"stato_richiesta": "In erogazione",
"email_target": null,
"allegati": [],
"timestamp_creation": 1596467662,
"timestamp_last_update": 1596467663,
"timestamp_stati": {
"in_ricerca": 1596467663,
"in_erogazione": 1596467663
},
"callback_data": false,
"opzioni": null,
"owner": "[email protected]",
"sincrona": false,
"ricerche": [
{
"id_ricerca": "5f2829ce065afc21cc60ad0e_0",
"stato_ricerca": "Ricerca evasa",
"json_ricerca": "{\"$1\":\"12485671007\"}",
"json_mappato": {
"NRea": "1378273",
"Cciaa": "RM"
},
"json_risultato": null
}
],
"esito": {
"codice": "0",
"info": "OK"
}
GET /document/{_id}
Once the request status is set to "completed," the document can be downloaded using the GET /document/{_id} method.
GET /document/{_id}
This is an example of a request using the previously obtained ID.
https://visengine2.altravia.com/visure/document/5f2829ce065afc21cc60ad0e
GET /document/{_id}
The response contains the name, size, and file.
{
data{
"name":"5f22f5b5065afc21cc60a27a.zip",
"size"10206",
"file":"++6+47433njVP9ZcX1XNtWUsKrTya9FGhwiXgdp5j5OPh0FpaKWVpjP8CUEjFjYzYwYTI3YS5wZGZVVAUAAwhDKF91eAsAAQQhAAAABCEAAABQSwUGAAAAAAEAAQBiAAAAZicAAAAA"
},
"success": true,
"message": "",
"error": null
}
The Company Chamber Certificate can be requested by anyone, even if not a legal representative of the company, without needing to submit any forms or proxies.
The Certificate can be requested either in a digital format or on CCIAA watermarked paper with a holographic countermark.
Do you need help?
Haven't found the answer you're looking for?
Fill in all the details, we will get back to you as soon as possible!
It is a service that allows access to the Company Registration Certificates, an official document issued by the Chamber of Commerce containing legal and administrative information about a company, such as its company name, legal form, registered office, and economic activity.
Through the API, you can request various types of certificates, including:
These certificates can be requested in digital format for immediate and fast access, or in a paper version on official watermark paper from the Chamber of Commerce, complete with a holographic security mark to ensure authenticity. You can also request the certificates in English, which is useful for international contexts.
An ordinary certificate contains the company's current information, while a historical certificate also includes a timeline of legal and administrative changes since the company's inception.
The service is designed for various user categories, each with specific needs:
The processing times for the Company Registration Certificates are quick, and the document is generally available within 4 business hours.
The service starts at €11.70 + VAT, but the cost may vary depending on the type of certificate requested. The final price depends on the format (e.g., ordinary or historical) and the user's specific needs. The ordinary certificate provides a general overview of the company, while the historical certificate includes detailed information on its evolution. Make sure to select the certificate that best suits your needs, as the cost may vary accordingly.