🇻🇪Venezuelan Citizen Information

Service to query Venezuelan citizens using their Government ID

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.

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.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required?
Description
Example

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 {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response

{
  "data": {
    "arrayName": [
      "GONZALEZ",
      "SANDOVAL",
      "JUAN",
      "ANTONIO"
    ],
    "birthDate": "2008-09-21",
    "documentNumber": "18359186",
    "documentType": "CCVE",
    "firstName": "JUAN ANTONIO",
    "lastName": "GONZALEZ SANDOVAL",
    "maritalStatus": "SOLTERO"
  },
  "signature": {
    "dateTime": "December 16, 2024 11:28 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "1R0A0"
}

Response Fields

Field
Type
Description

data

Object

Contains citizen's personal information.

data.arrayName

Array

Array of name components.

data.birthDate

String

Birth date of the citizen (YYYY-MM-DD). We don't bring this value on all the requests.

data.documentNumber

String

The input document number.

data.documentType

String

The input document type.

data.firstName

String

Citizen's first name.

data.lastName

String

Citizen's last name.

data.maritalStatus

String

Citizen's marital status. We don't bring this value on all the requests.

signature

Object

Signature metadata for response verification.

signature.dateTime

String

Timestamp of the response generation.

signature.message

String

Verification message.

id

String

Unique response identifier.

Note: the birthDate and maritalStatus are values that are only retrieved for certain records, is not a guaranteed field.

Last updated