Skip to main content

🇨🇴 Colômbia — PEP (Permissão Especial de Permanência)

Endpoint

GET https://api.verifik.co/v2/co/foreigner-id/pep

Envie documentNumber e expeditionDate (DD/MM/YYYY) na query. O mesmo payload em POST (JSON).

Cabeçalhos

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parâmetros

nametyperequireddescription
documentNumberstringyesNúmero PEP sem espaços ou pontuação.
expeditionDatestringyesData de expedição DD/MM/AAAA.

Requisição

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/foreigner-id/pep", {
params: { documentNumber: "123456789", expeditionDate: "10/10/2024" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Resposta

{
"data": {
"documentType": "PEP",
"documentNumber": "123456789012345",
"status": "VIGENTE",
"fullName": "MATEO VERIFIK"
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "August 22, 2023 8:02 PM"
},
"id": "tnlkb"
}

Notas

  • Data em DD/MM/YYYY.
  • GET e POST usam o mesmo fluxo.