🇺🇾Uruguay
Service to consult citizens of Uruguay using the CC (Citizenship Card).
Información del ciudadano uruguayo
GET - https://api.verifik.co/v2/uy/cedula
Este servicio de Uruguay permite verificar la validez de una cédula de identidad uruguaya utilizando el tipo de documento CCUY, junto con el número de documento y la fecha de nacimiento proporcionados. Además de validar el documento, es posible obtener información detallada como el nombre completo, los nombres y los apellidos de la persona asociada al número de documento ingresado.
Implementación
Headers
Content-Type
application/json
Authorization
Bearer <token>
Query Parameters
documentNumber
String
True
Document number of the person to be consulted.
123456789
documentType
String
True
Type of document to consult. Allowed parameter: CCUY.
CUI
dateOfBirth
String
True
Date of birth in the following format (DD/MM/YYYY)
20/02/1978
Request
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/uy/cedula>',
params: { documentNumber: '123456789', documentType:'CCUY', dateOfBirth: '20/02/1978'},
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": [
"MATEO",
"VERIFIK"
],
"dateOfBirth": "1973-03-03",
"documentNumber": "12345678909876",
"documentType": "CCUY",
"firstName": "MATEO",
"fullName": "MATEO VERIFIK",
"lastName": "VERIFIK"
},
"signature": {
"dateTime": "July 3, 2024 3:24 PM",
"message": "Certified by Verifik.co"
},
"id": "YOESE"
}
Last updated