Skip to main content

🇨🇴 哥伦比亚 — SIGEP(按证件)

端点

GET https://api.verifik.co/v2/co/sigep/number

通过 documentTypedocumentNumber 查询。若仅按全名搜索,请使用 SIGEP(按姓名)

标头

NameValue
Acceptapplication/json
AuthorizationBearer <token>

参数

nametyperequireddescription
documentTypestringyesCCNIT(API 校验)。
documentNumberstringyes不含空格与标点。

请求

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/sigep/number", {
params: { documentType: "CC", documentNumber: "34503110" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

响应

{
"data": {
"fullName": "FRANCIA ELENA MARQUEZ MINA",
"documentType": "CC",
"documentNumber": "34503110",
"records": [],
"legend": ""
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "October 27, 2025 8:49 AM"
},
"id": "VMH0I"
}

说明

  • documentType 仅支持 CC / NIT
  • 可能出现 200records 为空。