Web service that allows you to check the validity of a natural person's tax code.
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
}