🇵🇦Panama

Service to query Panamanian citizens using the citizenship card.

Panamanian Citizen Information

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

The Panamanian citizen information provides accurate and reliable data for individuals in Panama. The service returns information about the document type, document number, full name, last name, first name, and an array of additional names.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Allowed value: CCPA.

CCPA

documentNumber

String

True

Document number of the person to be queried.

123456789

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'},
  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": {
    "documentType": "CCPA",
    "documentNumber": "E-1-234567",
    "fullName": "MATEO VERIFIK",
    "firstName": "MATEO",
    "lastName": "VERIFIK",
    "arrayName": [
      "MATEO",
      "VERIFIK"
    ]
  },
  "signature": {
    "dateTime": "December 1, 2022 10:02 AM",
    "message": "Certified by Verifik.co"
  }
}

Last updated