{{baseUrl}}/advance
GET {{baseUrl}}/advance?denominazione=<string>&provincia=<string>&codice_ateco=<string>&cciaa=<string>&rea=<string>&fatturato_min=<integer>&fatturato_max=<integer>&dipendenti_min=<integer>&dipendenti_max=<integer>&skip=<integer>&limit=<integer>&dry_run=<integer>&lat=<double>&lng=<double>&radius=<integer>
With this endpoint we can draw up a list of companies that correspond to certain parameters described below. The call returns a maximum of 100 results even if you set a higher limit.
Body
PARAM
Key | Datatype | Required | Description |
denominazione
|
string | name of the company (you can search for parts of the name as long as they are whole words) | |
provincia
|
string | the code of the region you want to search in | |
codice_ateco
|
string | ateco code | |
cciaa
|
string | Chamber of Commerce | |
rea
|
string | rea code | |
fatturato_min
|
string | minimum revenue value | |
fatturato_max
|
string | maximum revenue value | |
dipendenti_min
|
string | minimum value of employees | |
dipendenti_max
|
string | maximum value of employees | |
skip
|
string | to set the number of records you want to skip from the result set | |
limit
|
string | number of results you want to receive; if not set, the call will return a maximum of 100 results | |
dry_run
|
string | simulates a request by returning only the number of records found and the price | |
lat
|
string | latitude | |
lng
|
string | longitude | |
radius
|
string | radius in meters |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"data": [
{
"cf": "12485671007",
"denominazione": "OPENAPI S.R.L.",
"piva": "12485671007",
"toponimo": "VIALE",
"via": "F TOMMASO MARINETTI",
"civico": "221",
"indirizzo": "VIALE F TOMMASO MARINETTI 221",
"comune": "ROMA",
"frazione": null,
"provincia": "RM",
"stato_attivita": "ATTIVA",
"timestamp": 1622452306,
"timestamp_creation": 1622452306,
"timestamp_last_update": 1622452306,
"cap": "00143",
"id": "60b4a85585e34e615c569ef5",
"gps": {
"coordinates": [
12.47843,
41.8071
]
},
"dettaglio": {
"codice_natura_giuridica": "SR"
},
"data_iscrizione": "2013-07-19"
},
{
"cf": "00291570844",
"denominazione": "COM.MAR SRL",
"piva": "00291570844",
"toponimo": "VIA",
"via": "OLIMPICA",
"indirizzo": "VIA OLIMPICA",
"comune": "RAVANUSA",
"frazione": null,
"provincia": "AG",
"stato_attivita": "INATTIVA",
"timestamp": 1643049486,
"timestamp_creation": 1643049486,
"timestamp_last_update": 1643049486,
"cap": null,
"id": "61f2c4d69fb8571d19235463",
"gps": {
"coordinates": [
13.9730583,
37.2627218
]
},
"dettaglio": {
"codice_natura_giuridica": "SR"
},
"data_iscrizione": "1979-04-05"
}
],
"success": true,
"message": "",
"error": null
} |
ENDPOINTS