This service allows users to verify the authenticity of a Venezuelan identity card by providing the document number. The response includes the full name of the cardholder, the first and last names separately, and the type of document.

This information can be used by companies and organizations to verify the identity of their customers, employees, or partners.

To use this service in a graphical interface, we invite you to access our client panel at Verifik.

Parameters

Name Type ¿Required? Description Example
documentNumber String True Document number of the person to be queried. 123456789

Implementation

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/ve/cedula>',
  params: { documentNumber: '123456789'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response 200 - (Successful request)

{
    "data": {
        "arrayName": [
            "MATEO",
            "VERIFIK"
        ],
        "documentNumber": "123456789",
        "documentType": "CCVE",
        "firstName": "MATEO",
        "fullName": "MATEO VERIFIK",
        "lastName": "VERIFIK"
    },
    "signature": {
        "dateTime": "May 29, 2024 3:01 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "EZIK1"
}

Other responses

Code Description Response Body
404 Not Found Information not found. {
"code": "NotFound",
"message": "Record not found.",
"signature": {
"dateTime": "August 31, 2022 3:24 PM",
"message": "Certified by Verifik.co"
}
}
409 Conflict Parameter is missing. {
"code": "MissingParameter",
"message": "missing documentNumber"
}