๐จ๐ด RUNT โ ์ด์ ๋ฉดํ
์๋ํฌ์ธํธโ
GET https://api.verifik.co/v2/co/runt/conductor
RUNT ์ ๋ฑ๋ก๋ ์ด์ ๋ฉดํ ์ ๋ณด๋ฅผ ๋ช
์์ documentTypeยทdocumentNumber ๋ก ์กฐํํฉ๋๋ค. ๋ฉดํ ์ํ, ์นดํ
๊ณ ๋ฆฌ, ์ ์ฑยท์๋ฌด ๊ต์ก ๊ด๋ จ ๋ฐ์ดํฐ, ์ ์ฌยท๊ณผํ๋ฃ ์์ฝ ๋ฑ์ด ์๋ต์ ํฌํจ๋ ์ ์์ต๋๋ค.
ํค๋(Headers)โ
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
๋งค๊ฐ๋ณ์(Parameters)โ
| name | type | required | description |
|---|---|---|---|
documentType | string | yes | ๋ฌธ์ ์ ํ. API ํ์ฉ: CC, CE, PA, PPT. |
documentNumber | string | yes | ์ด์ ์ ๋ฌธ์ ๋ฒํธ(๊ณต๋ฐฑยท๋ง์นจํ ์์). |
์์ฒญ(Request)โ
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/runt/conductor", {
params: { documentType: "CC", documentNumber: "123456789" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/runt/conductor"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "123456789"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
์๋ต(Response)โ
- 200
- 404
- 409
{
"data": {
"documentType": "CC",
"documentNumber": "63535709",
"fullName": "ARLETH PATRICIA RUEDA CORREA",
"driverStatus": "ACTIVO",
"citizenStatus": "ACTIVA",
"licenses": [
{
"category": "B1",
"status": "ACTIVA",
"dueDate": "19/09/2034",
"expeditionDate": "19/09/2024"
}
],
"infractions": {
"tieneMultas": "NO"
}
},
"signature": {
"dateTime": "October 10, 2025 7:29 PM",
"message": "Certified by Verifik.co"
},
"id": "3R2V0"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing documentType. missing documentNumber"
}
์ฐธ๊ณ (Notes)โ
- ์๋ต ํ๋๋ RUNT ์์ฒ ๋ฐ์ดํฐ์ ๋ฐ๋ผ ๋ฌ๋ผ์ง ์ ์์ต๋๋ค.
- ์ ํ UI์ ๋ค๋ฅธ ๋ฌธ์ ์ ํ์ด ๋ณด์ผ ์ ์์ผ๋, ์ด ๊ฒฝ๋ก์ ๊ฒ์ฆ์
CC,CE,PA,PPT์ ๋๋ค.