๐จ๐ด ์ฝ๋กฌ๋น์ โ SIGEP ๊ณต๋ฌด์ ๊ฒ์ (์ด๋ฆ)
์๋ํฌ์ธํธโ
GET https://api.verifik.co/v2/co/sigep/name
fullName ์ฟผ๋ฆฌ๋ก SIGEP ๋๋ ํฐ๋ฆฌ๋ฅผ ๊ฒ์ํฉ๋๋ค. ๋ฌธ์ ๋ฒํธ๊ฐ ์์ผ๋ฉด SIGEP (๋ฌธ์๋ฒํธ)๋ฅผ ์ฌ์ฉํ์ธ์.
ํค๋(Headers)โ
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
๋งค๊ฐ๋ณ์(Parameters)โ
| name | type | required | description |
|---|---|---|---|
fullName | string | yes | ๊ฒ์ํ ์ ์ฒด ์ด๋ฆ. |
์์ฒญ(Request)โ
- Node.js
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/sigep/name"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"fullName": "FRANCIA ELENA MARQUEZ MINA"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
์๋ต(Response)โ
- 200
- 404
- 409
{
"data": {
"fullName": "FRANCIA ELENA MARQUEZ MINA",
"legend": "",
"records": []
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "October 27, 2025 8:46 AM"
},
"id": "4ROH0"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing fullName\n"
}
์ฐธ๊ณ (Notes)โ
fullName์ด ์์ผ๋ฉด 409 ๊ฐ ํํฉ๋๋ค.- 200 ์ด์ด๋
records๊ฐ ๋น์ด ์์ ์ ์์ต๋๋ค. - SIGEP ์์ฒ ์ฅ์ ์ 409
Endpoint_out_of_service๊ฐ ๋์ฌ ์ ์์ต๋๋ค.