Skip to main content

🇨🇴 哥伦比亚 — 司法程序

端点

GET https://api.verifik.co/v2/co/rama/procesos

query 中传入 documentTypeCCNIT)和 documentNumber。司法查询依赖姓名匹配,可能返回空列表。

标头

NameValue
Acceptapplication/json
AuthorizationBearer <token>

参数

nametyperequireddescription
documentTypestringyesCCNIT
documentNumberstringyes要查询的号码。

请求

import axios from "axios";

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

响应

{
"data": {
"consultedSubject": "MATEO VERIFIK",
"documentNumber": "123456789",
"documentType": "CC",
"list": [
{
"despacho": "JUZGADO XXX CIVIL MUNICIPAL DE BOGOTÁ ",
"departamento": "BOGOTÁ",
"fechaProceso": "2007-09-21T00:00:00",
"llaveProceso": "110014003XXXXXXXXX"
}
],
"pagination": {
"page": "1",
"pages": "2",
"records": "21"
}
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "March 3, 2022 3:55 PM"
},
"id": "ABC12"
}

说明

  • documentTypeCCNIT
  • 可能出现空列表