🇺🇾Uruguay

Service to consult citizens of Uruguay using the CC (Citizenship Card).

Uruguayan Citizen Information

GET - https://api.verifik.co/v2/uy/cedula

This Uruguay service allows you to verify the validity of a Uruguayan ID card using the document type CCUY and the provided document number along with the date of birth. In addition to validating the document, you can obtain detailed information such as the full name, first names, and last names of the person associated with the given document number.

Implementation

Headers

Query Parameters

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 {
 notFou 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