Skip to main content

哥伦比亚警方犯罪记录核查

API 参考

Endpoint

https://api.verifik.co/v2/co/policia/consultar

哥伦比亚警方犯罪记录核查根据宪法第 248 条,确认当事人是否与司法机关存在未决事项。通过 GET(查询参数)或 POST(JSON 正文)发送 documentTypedocumentNumber。成功的 data 包含 documentTypedocumentNumberfirstNamelastNamefullNamearrayNamedetails。适用于招聘、入职和尽职调查背景核验。

请求头(Headers)

名称取值
Content-Typeapplication/json
AuthorizationBearer <token>

参数(Parameters)

info

有关支持的证件类型及其专属必填参数的完整清单,请参阅 证件类型 指南。

名称类型必填描述
documentTypestring证件类型。有效值:CCCEPPTPADPDP 为 Documento Diplomático(外交证件)。PPT 可接受;警方门户将其按护照映射。
documentNumberstring待查询人员的证件号码,不含空格或圆点。

此接口接收 date 参数(与 RNMC 不同)。

请求(Request)

import axios from "axios";

const options = {
method: "GET",
url: "https://api.verifik.co/v2/co/policia/consultar",
params: { documentType: "CC", documentNumber: "1032386359" },
headers: {
Accept: "application/json",
Authorization: "Bearer <your_token>",
},
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

响应(Response)

{
"data": {
"documentType": "CC",
"documentNumber": "1032386359",
"firstName": "LILIA MANUELA",
"lastName": "LESPORT FERNANDEZ",
"fullName": "LILIA MANUELA LESPORT FERNANDEZ",
"arrayName": ["LILIA", "MANUELA", "LESPORT", "FERNANDEZ"],
"details": "NO TIENE ASUNTOS PENDIENTES CON LAS AUTORIDADES JUDICIALES de conformidad con lo establecido en el artículo 248 de la Constitución Política de Colombia."
},
"signature": {
"dateTime": "March 13, 2024 10:48 PM",
"message": "Certified by Verifik.co"
},
"id": "7QS69"
}

备注(Notes)

  • 同时支持 GETPOST。POST 在 JSON 正文中发送相同字段。
  • 警方门户按 姓(apellidos)在前、名(nombres)在后 显示。Verifik 先返回名:firstNameLILIA MANUELAlastNameLESPORT FERNANDEZfullNameLILIA MANUELA LESPORT FERNANDEZarrayName 为名在前、姓在后。
  • 生产环境的 data.details 仅包含 NO TIENE / REGISTRA ASUNTOS 那一句。宪法说明文字会被去除。
  • 沙箱响应可能还包含 legend。不要将 legend 视为生产环境保证字段。
  • 允许的 documentTypeCCCEPPTPADP(Documento Diplomático)。PPT 可接受;门户按护照映射。
  • 此路由不需要签发 date(RNMC 需要)。
  • 上游或验证码临时故障会返回 409,代码为 Endpoint_out_of_servicecaptcha_failed
  • 查询待履行矫正措施请使用 哥伦比亚 — RNMC 纠正措施GET /v2/co/policia/rnmc)。