Skip to main content

🇨🇴 콜롬비아 — 사법 기록(재판부 사건)

엔드포인트

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

쿼리documentType(CC만), documentNumber, city(예: BOGOTA)를 보냅니다.

헤더(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

매개변수(Parameters)

nametyperequireddescription
documentTypestringyesCC 만 허용.
documentNumberstringyes조회할 번호.
citystringyes사법부 회로 코드(예: BOGOTA, MEDELLIN).

요청(Request)

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);

응답(Response)

{
"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"
}

참고(Notes)

  • API는 documentType = CC 만 허용합니다.
  • city 는 연동에서 지원하는 코드여야 합니다.