Skip to main content

🇨🇴 哥伦比亚 — PPT(临时保护许可)

端点

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

使用 documentNumber 与签发日期 expeditionDateDD/MM/YYYY)。也可用 POST 提交相同 JSON 字段。

标头

NameValue
Acceptapplication/json
AuthorizationBearer <token>

证件要求

适用对象: 需要从 Migración Colombia 查询移民状态(如 VIGENTE、到期日)的 Permiso de Protección TemporalPPT)持有委内瑞拉国民

字段说明
documentNumberPPT 号码,仅数字。在哥伦比亚许可号通常最多 7 位。部分系统(SENA、工资)显示为 15 位补零 — 发送您记录中的数值。Migración 示例:2081381
expeditionDate签发日期 DD/MM/YYYY(如 07/03/2022)。必填。

另有: 通过 /v2/co/ceduladocumentType=PPT 进行姓名型查询(5–10 位校验,无需签发日期)。

完整对照:身份证件指南

参数

nametyperequireddescription
documentNumberstringyesPPT 号码,仅数字。通常最多 7 位(部分系统补零至 15 位)。示例:2081381
expeditionDatestringyes签发日期 DD/MM/YYYY(如 07/03/2022)。须与证件一致。

请求

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

响应

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

说明

  • 日期格式为 DD/MM/YYYY
  • GETPOST 行为一致。
  • 上游不可用可能出现 404 / 500