Skip to main content

🇨🇴 コロンビア — SIGEP(文書番号)

エンドポイント

GET https://api.verifik.co/v2/co/sigep/number

documentTypedocumentNumber でディレクトリを検索します。氏名のみの検索は SIGEP(氏名) を使用します。

ヘッダー(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

パラメータ(Parameters)

nametyperequireddescription
documentTypestringyesCC または NIT(API 検証)。
documentNumberstringyesスペース・句読点なし。

リクエスト(Request)

import axios from "axios";

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

レスポンス(Response)

{
"data": {
"fullName": "FRANCIA ELENA MARQUEZ MINA",
"documentType": "CC",
"documentNumber": "34503110",
"records": [],
"legend": ""
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "October 27, 2025 8:49 AM"
},
"id": "VMH0I"
}

備考(Notes)

  • documentTypeCC / NIT のみです。
  • 空の recordslegend が返る場合があります。