Web service that allows you to obtain personal information about a natural or legal person such as personal data, telephones and the presence of negative events.
Allows you to know if a fiscal code of a natural person is valid
codice_fiscale required | string Default: "<string>" Example: RSSMRA90D15L117D Fiscal code |
object | |
success | boolean |
message | string |
error | integer |
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://rintraccio.openapi.it/verifica_cf/%7Bcodice_fiscale%7D"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
{- "data": {
- "validita": true
}, - "success": true,
- "message": "",
- "error": null
}
This method allows you to create a request to receive information about a natural or legal person
cf_piva required | string Default: "<string>" |
tipo required | Array of strings <= 2 items Items Enum: "anagrafica" "telefoni" "negativita" |
object (Callback) |
object (Richiesta) | |
success | boolean |
message | string |
error | integer |
{- "cf_piva": "RSSMRA90D15L117D",
- "tipo": [
- "anagrafica"
],
}
{- "data": {
- "id": "60eeefd05c6fb04d9536b5c2",
- "cf_piva": "RSSMRA90D15L117D",
- "tipo": [
- "anagrafica"
], - "callback": {
- "field": "data",
- "method": "POST",
- "data": [ ]
}, - "esito": null,
- "timestamp": 1625232029,
- "owner": "test@email.it",
- "soggetto": null,
- "status": "PENDING",
- "date_request": null,
- "date_completion": null
}, - "success": true,
- "message": "",
- "error": null
}
This method allows you to see all the requests you have made
Array of objects (Richieste) [ items ] | |
success | boolean |
message | string |
error | integer |
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://rintraccio.openapi.it/richiesta"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
{- "data": [
- {
- "id": "60e866b6b3178c6dc80adf8e",
- "cf_piva": "RSSMRA90D15L117D",
- "status": "COMPLETED",
- "esito": {
- "codice": 200,
- "info": "OK"
}, - "timestamp": 1625654486,
- "owner": "test@email.it"
}, - {
- "id": "60e866b6b3178c6dc80adf8e",