Skip to main content

๐Ÿ‡จ๐Ÿ‡ด ์ฝœ๋กฌ๋น„์•„ โ€” SIGEP ๊ณต๋ฌด์› ๊ฒ€์ƒ‰ (์ด๋ฆ„)

์—”๋“œํฌ์ธํŠธโ€‹

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

fullName ์ฟผ๋ฆฌ๋กœ SIGEP ๋””๋ ‰ํ„ฐ๋ฆฌ๋ฅผ ๊ฒ€์ƒ‰ํ•ฉ๋‹ˆ๋‹ค. ๋ฌธ์„œ ๋ฒˆํ˜ธ๊ฐ€ ์žˆ์œผ๋ฉด 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 ๊ฐ€ ํ”ํ•ฉ๋‹ˆ๋‹ค.
  • 200 ์ด์–ด๋„ records ๊ฐ€ ๋น„์–ด ์žˆ์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
  • SIGEP ์›์ฒœ ์žฅ์•  ์‹œ 409 Endpoint_out_of_service ๊ฐ€ ๋‚˜์˜ฌ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.