🇻🇪Venezuelan Citizen Information

Service to query Venezuelan citizens using their Citizenship ID.

Venezuelan Citizen Information

GET - https://api.verifik.co/v2/ve/cedula

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.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentNumber

String

True

Document number of the person to be queried.

123456789

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

{
    "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"
}

Last updated