🇧🇴Bolivia

Bolivian Citizen Identification - Service to query Bolivian citizens using the CI (Identity Card).

Endpoint

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

The Bolivian Citizen Identification service allows you to retrieve basic information about a Bolivian citizen based on their national ID number and date of birth. The service returns the name of the person associated with the provided document, helping to verify the authenticity of the identity information provided.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Parameters

Name
Type
Required
Description

documentType

String

True

Document type. Valid parameter: CI.

documentNumber

String

True

Document number of the person to consult. Example :123456789

dateOfBirth

String

True

Date of birth of the person to consult, valid format: dd/mm/yyyy.

Request

const axios = require('axios');

let config = {
  method: 'get',
  maxBodyLength: Infinity,
  url: 'https://api.verifik.co/v2/bo/cedula?documentType=CI&documentNumber=4511200&dateOfBirth=27/03/1978&force=true',
  headers: { 
    'Authorization': 'JWT eyJhbGcCJ9.eyJjbGllb...aJtQ'
  }
};

axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});

Response

{
    "data": {
        "arrayName": [
            "LIDIA",
            "IRIARTE",
            "TORREZ"
        ],
        "dateOfBirth": "1978-03-27",
        "documentNumber": "1234567",
        "documentType": "CI",
        "firstName": "MATEO",
        "fullName": "MATEO VERIFIK",
        "lastName": "VERIFIK"
    },
    "signature": {
        "dateTime": "May 11, 2023 6:17 PM",
        "message": "Certified by Verifik.co"
    }
}

Last updated