Skip to main content

🇨🇴 コロンビア — 司法記録(裁判所事件)

エンドポイント

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

クエリdocumentTypeCC のみ)、documentNumbercity(例: 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)

  • documentTypeCC のみです。
  • city は連携で許可されたコードを使ってください。