The Colombian Citizen Identification Information service allows you to retrieve details about a Colombian citizen's identification document. By providing the identification number and type of document, you can access essential information such as the citizen's full name, first name, last name, and identification number.
This service is particularly useful for identity verification or background checks.
Note: This service is specifically designed for Colombian identification documents. For verification of identification documents from other countries, please consult the relevant documentation for the appropriate service.
Name | Type | ¿Required? | Description | Example |
---|---|---|---|---|
documentType | String | True |
Type of document. Valid parameter: CC, PPT. | CC |
documentNumber | String | True |
Document number of the person to consult, without spaces or periods. | 123456789 |
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/co/cedula>',
params: {documentType: 'CC', 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);
}
{
"data": {
"documentType": "CC",
"documentNumber": "1234567890",
"fullName": "MATEO VERIFIK",
"firstName": "MATEO",
"lastName": "VERIFIK",
"arrayName": [
"MATEO",
"",
"VERIFIK",
""
],
"expeditionDate": "Esta información ha sido catalogada como semi privada y no está disponible para su entrega de forma temporal. - RNEC 2686",
"expeditionPlace": "Esta información ha sido catalogada como semi privada y no está disponible para su entrega de forma temporal. - RNEC 2686",
"dateOfBirth": "Esta información ha sido catalogada como semi privada y no está disponible para su entrega de forma temporal. - RNEC 2686"
},
"signature": {
"dateTime": "July 19, 2022 9:37 AM",
"message": "Certified by Verifik.co"
}
}
Code | Description | Response Body | |
---|---|---|---|
404 |
Not Found | Information not found. |
| {
"code": "NotFound",
"message": "Record not found.",
"signature": {
"dateTime": "August 31, 2022 3:24 PM",
"message": "Certified by Verifik.co"
}
} |
| 409
| Conflict | Some parameters are missing.
| {
"code": "MissingParameter",
"message": "missing documentType\n. missing documentNumber\n"
} |
| 409
| Conflict | Invalid documentType for this query.
| {
"code": "MissingParameter",
"message": "documentType must be one of: [CC]"
} |