Verify Fiscal ID
The verify fiscal id endpoint allows to check if a fiscal code is valid or not. In particular, it verifies that the fiscal id is registered in the list of codes issued by the Italian tax Authority.
If positive, the result will be true
. In case of non-match, on the other hand, false
.
note
This service is subject to a fee. Each request will be billed accordingly. Ask for a quote to business@a-cube.io
Endpoint: GET /verify/fiscal-id/{id}
where {id}
is the fiscal id.
Example:
GET /verify/fiscal-id/BNCMRA70A20H501B
If the request is successful, the response will be a JSON object as follows:
{
"id": "BNCMRA70A20H501B",
"valid": true
}