🇵🇦Panama
Service to query Panamanian citizens and residents using their document number
Endpoint
https://api.verifik.co/v2/pa/cedula
Validate identity documents for both Panamanian citizens and permanent residents using the Cédula de Identidad Personal. This API endpoint provides accurate and reliable data, including the document number, full name, first name, last name, and an array of name components. With broad applicability, it supports a wide range of identity verification needs in Panama.
Key Use Case Ideal for businesses and organizations conducting identity verification for Panamanian citizens and permanent residents, such as for KYC processes, financial services, or legal compliance.
Important Notes
This service validates the Cédula de Identidad Personal for both Panamanian citizens and permanent residents. 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 Panamanian privacy laws and should be handled responsibly.
Always cross-check with the physical document to confirm the information retrieved.
Headers
Content-Type
application/json
Authorization
Bearer <token>
Query Parameters
documentType
String
True
Document type. Allowed value: CCPA.
CCPA
documentNumber
String
True
Document number of the person to be queried.
123456789
dateOfBirth
String
True
Date of birth of the owner of the document. in the following format DD/MM/YYYY
02/03/1992
Request
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/pa/cedula/extra',
params: {documentType: 'CCPA', documentNumber: 'E-1-234567', dateOfBirth: ''02/03/1992},
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": [
"JUAN",
"MIGUEL",
"TREVIÑO",
"MORALES"
],
"dateOfBirth": "1999-03-02T00:00:00.000Z",
"documentNumber": "E-8-187192",
"documentType": "CCPA",
"firstName": "JUAN MIGUEL",
"fullName": "JUAN MIGUEL TREVIÑO MORALES",
"lastName": "TREVIÑO MORALES",
"audit": {}
},
"signature": {
"dateTime": "September 24, 2024 8:20 PM",
"message": "Certified by Verifik.co"
},
"id": "I06UC"
}
Last updated