🇨🇴 哥伦比亚 — SISBEN 分数
端点
GET https://api.verifik.co/v2/co/sisben
使用 documentType 与 documentNumber 访问公开 SISBEN 查询门户。通过浏览器自动化实现,响应可能较慢。
标头
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
参数
| name | type | required | description |
|---|---|---|---|
documentType | string | yes | CC、CE、PEP、PPT、PA。 |
documentNumber | string | yes | 不含空格与标点。 |
请求
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/sisben", {
params: { documentType: "CC", documentNumber: "1121329661" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/sisben"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "1121329661"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
响应
- 200
- 404
- 409
{
"data": {
"documentType": "CC",
"documentNumber": "1121329661",
"sisbenGroup": "A",
"fullName": "NOMBRE SEGUNDO APELLIDO",
"city": "BOGOTÁ D.C.",
"department": "CUNDINAMARCA"
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "April 8, 2026 11:00 PM"
},
"id": "IDNT1"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "documentType must be one of: [CC,CE,PEP,PPT,PA]"
}
说明
- 可能需要数秒返回。
PPT受 API 接受;若上游表单变更可能出现 500。