🇵🇦Panamá

Servicio para consultar ciudadanos panameños mediante la cédula de ciudadanía.

Información de Ciudadanos Panameños

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

La información de ciudadanos panameños proporciona datos precisos y confiables sobre individuos en Panamá. El servicio devuelve información sobre el tipo de documento, número de documento, nombre completo, apellido, nombre y un arreglo de nombres adicionales.

Implementación

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required
Description
Example

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