🇩🇴Dominican Republic
Service to consult citizens of the Dominican Republic using the CIE (Identity and Electoral Card).
Endpoint
https://api.verifik.co/v2/do/cedula
This Dominican Republic endpoint allows you to verify the validity of a Dominican ID using the CIE document type and the document number provided.
To use this service in a graphical interface, we invite you to enter our Verifik client panel.
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Query Parameters
Name
Type
Required?
Description
Example
documentNumber
String
True
Document number of the person to consult.
123456789
documentType
String
True
Type of document to consult. Allowed parameter: CIE.
CIE
Request
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/do/cedula',
params: { documentNumber: '123456789', documentType:'CIE'},
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"
],
"documentNumber": "12345678909876",
"documentType": "CIE",
"firstName": "MATEO",
"fullName": "MATEO VERIFIK",
"lastName": "VERIFIK"
},
"signature": {
"dateTime": "July 3, 2024 3:24 PM",
"message": "Certified by Verifik.co"
},
"id": "YOESE"
}
Last updated