🇨🇴Registry Certificate

Service to generate a certificate of document validity through the Registrar's Office.

Create a new user

GET - https://api.verifik.co/v2/co/registraduría/certificado

The Registry Certificate service provides a programmatic method to verify the validity of a Colombian identity document and obtain the certificate status. By using the document number and date to query the Registraduría Nacional del Estado Civil database, this service returns a JSON response with the certificate status, any notifications or exceptions, and a base64-encoded PDF of the certificate.

This service is ideal for Colombian institutions, companies, or individuals needing to verify the authenticity of a Colombian identity document or certificate.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentNumber

String

True

Document number of the person to consult, without spaces or points.

123456789

date

String

True

Date of issuance of the cedula to consult. Valid format: DD/MM/YYYY.

10/10/2020

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/registraduria/certificado>',
  params: {documentNumber: '901331380', date: '10/10/2020'},
  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": {
        "codigoVerificacion": "2143291740",
        "novedad": "VIGENTE (VIVO)",
        "pdfBase64": "JVBERi0xLjQKJeLjz9+miUACiiigD...NoY3CiUlRU9GCg==",
        "documento": {
            "cedula": "1.121.329.661",
            "fechaExpedicion": "16 DE JULIO DE 2007",
            "lugarExpedicion": "VILLANUEVA - LA GUAJIRA",
            "nombre": "ANUAR DE JESUS HERNANDEZ GARCIA"
        }
    },
    "signature": {
        "dateTime": "August 29, 2024 10:39 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "7KTH7"
}

Last updated