Rintraccio

L'API è stata sostituita dai nuovi endpoint disponibili in Risk

Per ottenere in pochi secondi nominativo, residenza/sede legale, telefono, check eventi negativi di un soggetto scopri i nuovi endpoint di Risk

Deprecated starting from 2025-12-31

Tutte le informazioni di cui hai bisogno

Qui trovi qualche consiglio da prendere in considerazione per approcciare a questa API. Se preferisci forniamo esempi di codice, documentazione in OAS3, la possibilità di provare l'API dal vivo con la Swagger UI oppure importare l'intera collezione in Postman. Offriamo inoltre un ambiente di Sandbox dove puoi sperimentare tutte le API gratuitamente.

Utili consigli per iniziare con Rintraccio

Prendi il token nell'apposita sezione prima di cominciare.

Usa lo strumento online o generalo via API. Imposta una data di scadenza e aggiungi una serie di Scopes per limitare le possibli azioni permesse al token.

Rintraccio (1.0.0)

Servizio web che consente di ottenere informazioni personali su una persona fisica o giuridica, come dati anagrafici, telefoni e presenza di eventi negativi.

Verifica

Metodi che consentono di convalidare un codice fiscale

Controllare il codice fiscale

Consente di sapere se il codice fiscale di una persona fisica è valido

Authorizations:
bearerAuth
path Parameters
codice_fiscale
required
string
Example: RSSMRA90D15L117D

Codice fiscale

Responses

Response Schema: application/json
object
success
boolean
message
string
error
integer

Request samples

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);

Response samples

Content type
application/json
{
  • "data": {
    },
  • "success": true,
  • "message": "",
  • "error": null
}

Richiesta

Metodi che permettono di creare e visualizzare le richieste

Crea una richiesta

Questo metodo consente di creare una richiesta di informazioni su una persona fisica o giuridica.

Authorizations:
bearerAuth
Request Body schema: application/json
cf_piva
required
string
tipo
required
Array of strings
Items Enum: "anagrafica" "telefoni" "negativita"
object (Callback)

Responses

Response Schema: application/json
object (Richiesta)
success
boolean
message
string
error
integer

Request samples

Content type
application/json
{}

Response samples

Content type
application/json
{
  • "data": {
    },
  • "success": true,
  • "message": "",
  • "error": null
}

Estrae tutte le richieste

Questo metodo permette di visualizzare tutte le richieste effettuate

Authorizations:
bearerAuth

Responses

Response Schema: application/json
Array of objects (Richieste)
success
boolean
message
string
error
integer

Request samples

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);

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "success": true,
  • "message": "",
  • "error": null
}

Dettaglio della richiesta

Permette di vedere i dettagli della richiesta identificata dall'id

Authorizations:
bearerAuth
path Parameters
id
required
string
Example: 60e866b6b3178c6dc80adf8e

Id della richiesta

Responses

Response Schema: application/json
object (Richiesta)
success
boolean
message
string
error
integer

Request samples

CURL *hnd = curl_easy_init();

curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://rintraccio.openapi.it/richiesta/%7Bid%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);

Response samples

Content type
application/json
Example
{
  • "data": {
    },
  • "success": true,
  • "message": "",
  • "error": null
}

Anagrafica

Metodo che consente di creare una richiesta di tipo: anagrafica

Crea solo una richiesta di tipo: anagrafica

Questo metodo consente di creare una richiesta di informazioni su una persona fisica o giuridica.

Authorizations:
bearerAuth
Request Body schema: application/json
cf_piva
required
string
object (Callback)

Responses

Response Schema: application/json
object (Richiesta)
success
boolean
message
string
error
integer

Request samples

Content type
application/json
{}

Response samples

Content type
application/json
{
  • "data": {
    },
  • "success": true,
  • "message": "",
  • "error": null
}

Telefoni

Metodo che consente di creare una richiesta di tipo: telefoni

Crea solo una richiesta di tipo: telefoni

Questo metodo consente di creare una richiesta di informazioni su una persona fisica o giuridica.

Authorizations:
bearerAuth
Request Body schema: application/json
cf_piva
required
string
object (Callback)

Responses

Response Schema: application/json
object (Richiesta)
success
boolean
message
string
error
integer

Request samples

Content type
application/json
{}

Response samples

Content type
application/json
{
  • "data": {
    },
  • "success": true,
  • "message": "",
  • "error": null
}

Negativita

Metodo che consente di creare una richiesta di tipo: negativita

Crea solo una richiesta di tipo: negativita

Questo metodo consente di creare una richiesta di informazioni su una persona fisica o giuridica.

Authorizations:
bearerAuth
Request Body schema: application/json
cf_piva
required
string
object (Callback)

Responses

Response Schema: application/json
object (Richiesta)
success
boolean
message
string
error
integer

Request samples

Content type
application/json
{}

Response samples

Content type
application/json
{
  • "data": {
    },
  • "success": true,
  • "message": "",
  • "error": null
}