Skip to main content

🇨🇴 哥伦比亚 — 司法记录(法院案件)

端点

GET https://api.verifik.co/v2/co/rama/juzgado/expedientes

query 中传入 documentType(仅 CC)、documentNumbercity(如 BOGOTA)。

标头

NameValue
Acceptapplication/json
AuthorizationBearer <token>

参数

nametyperequireddescription
documentTypestringyesCC
documentNumberstringyes要查询的号码。
citystringyes司法辖区城市代码(如 BOGOTAMEDELLIN)。

请求

import axios from "axios";

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

响应

{
"data": {
"documentType": "CC",
"documentNumber": "1234567890",
"city": "BOGOTA",
"courtOfepms": "EPMS EXAMPLE",
"filingNumber": "2024-000123"
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "March 3, 2022 3:55 PM"
},
"id": "ABC12"
}

备注

  • API 仅接受 documentType = CC
  • city 须为集成支持的代码。