Skip to main content

⚠️ This page has been moved

This URL belonged to the old GitBook documentation and is now in a new location.

New URL: /identity/venezuela

You will be automatically redirected in 60 seconds...

Go to New Documentation

Venezuelan Citizen Information

Endpoint

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

Verify Venezuelan identification by document number. This service allows you to validate the identity of Venezuelan citizens using their national identification document number.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescription
documentNumberstringYesDocument number.

Request

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/ve/cedula", {
  params: { documentNumber: "123456789" },
  headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);

Response

{
  "data": {
    "documentNumber": "123456789",
    "fullName": "Juan Pérez",
    "status": "valid"
  },
  "signature": {"message": "Certified by Verifik.co", "dateTime": "January 16, 2024 3:44 PM"},
  "id": "VE001"
}

Notes

  • documentNumber is required.

For complete and updated documentation, visit: /identity/venezuela