🇨🇴 콜롬비아 — 사법 기록(재판부 사건)
엔드포인트
GET https://api.verifik.co/v2/co/rama/juzgado/expedientes
쿼리로 documentType(CC만), documentNumber, city(예: BOGOTA)를 보냅니다.
헤더(Headers)
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
매개변수(Parameters)
| name | type | required | description |
|---|---|---|---|
documentType | string | yes | CC 만 허용. |
documentNumber | string | yes | 조회할 번호. |
city | string | yes | 사법부 회로 코드(예: BOGOTA, MEDELLIN). |
요청(Request)
- Node.js
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/rama/juzgado/expedientes"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "1234567890", "city": "BOGOTA"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
응답(Response)
- 200
- 404
{
"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"
}
{
"code": "NotFound",
"message": "Record not found."
}
참고(Notes)
- API는
documentType=CC만 허용합니다. city는 연동에서 지원하는 코드여야 합니다.