Skip to main content

🇨🇴 Colômbia — PPT (proteção temporária)

Endpoint

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

documentNumber e expeditionDate (DD/MM/YYYY). POST com o mesmo JSON.

Cabeçalhos

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parâmetros

nametyperequireddescription
documentNumberstringyesNúmero do PPT sem espaços.
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/ppt", {
params: { documentNumber: "123456789", expeditionDate: "07/03/2022" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Resposta

{
"data": {
"documentType": "PPT",
"documentNumber": "2081381",
"status": "VIGENTE",
"fullName": "JUAN MIGUEL CAMERO MORALES"
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "May 13, 2025 11:52 PM"
},
"id": "JD24J"
}

Notas

  • Data em DD/MM/YYYY.
  • GET e POST equivalentes.
  • Falhas no portal podem gerar 404 / 500.