Skip to main content

🇨🇴 Colombie — PPT (protection temporaire)

Point d'accès

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

documentNumber et expeditionDate (DD/MM/YYYY). POST JSON équivalent.

En-têtes

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Paramètres

nametyperequireddescription
documentNumberstringyesNuméro PPT sans espaces.
expeditionDatestringyesDate d’émission JJ/MM/AAAA.

Requête

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);

Réponse

{
"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"
}

Remarques

  • Format de date DD/MM/YYYY.
  • GET et POST identiques.
  • Indisponibilité amont possible (404 / 500).