Skip to main content

🇨🇴 コロンビア — SIGEP(氏名検索)

エンドポイント

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

fullName で検索します。証明書番号がある場合は SIGEP(文書) を使ってください。

ヘッダー(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

パラメータ(Parameters)

nametyperequireddescription
fullNamestringyes検索するフルネーム。

リクエスト(Request)

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/sigep/name", {
params: { fullName: "FRANCIA ELENA MARQUEZ MINA" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

レスポンス(Response)

{
"data": {
"fullName": "FRANCIA ELENA MARQUEZ MINA",
"legend": "",
"records": []
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "October 27, 2025 8:46 AM"
},
"id": "4ROH0"
}

備考(Notes)

  • fullName 未指定は 409 になりやすいです。
  • records が空でも 200 の場合があります。
  • 上流障害時は 409 Endpoint_out_of_service となることがあります。