🇵🇾Paraguay
Service to query Paraguayan citizens using the CIC (Civil Identity Card).
Endpoint
https://api.verifik.co/v2/py/cic
Validate the Cédula de Identidad Civil (CIC) for Paraguayan citizens. This API endpoint provides accurate and reliable data, including the document number, full name, first name, last name, and an array of name components, enabling efficient identity verification for a wide range of applications in Paraguay.
Key Use Case Ideal for businesses and organizations needing to verify the identity of Paraguayan citizens, such as for KYC processes, financial services, or legal compliance.
Important Notes
This service validates the Cédula de Identidad Civil (CIC) for Paraguayan citizens. For other document types or nationalities, please refer to our alternative validation services.
Use of this service is restricted to authorized entities. The data provided is subject to Paraguayan privacy laws and should be handled responsibly.
Always cross-check with the physical CIC document to confirm the information retrieved.
Headers
Content-Type
application/json
Authorization
Bearer <token>
Query Parameters
documentNumber
String
True
Document number of the person to be queried.
1234567
Request
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/py/cic>',
params: {documentNumber: '1234567'},
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": "123456789",
"documentType": "CICPY",
"firstName": "MATEO",
"fullName": "MATEO VERIFIK",
"lastName": "VERIFIK"
},
"signature": {
"dateTime": "May 29, 2024 3:09 PM",
"message": "Certified by Verifik.co"
},
"id": "6BJW5"
}
Last updated