Run with Postman

Rintraccio (1.0.0)

Web service that allows you to check the validity of a natural person's tax code.

Verifica

Methods that allow you to to validate a fiscal code

Check fiscal code

Allows you to know if a fiscal code of a natural person is valid

Authorizations:
path Parameters
codice_fiscale
required
string
Default: "<string>"
Example: RSSMRA90D15L117D

Fiscal code

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
}