๐จ๐ด RUNT โ ์ฐจ๋ ํ์ธ(๊ธฐ๋ณธ)
์๋ํฌ์ธํธโ
GET https://api.verifik.co/v2/co/runt/vehiculo
๋ฒํธํ๊ณผ ๋ช
์์ documentTypeยทdocumentNumber ๋ก RUNT ์ ๋ฑ๋ก๋ ์ฐจ๋์ ์ผ๋ฐ ๋ฑ๋ก ์ ๋ณดยท๊ธฐ๋ณธ ํน์ฑ์ ์กฐํํฉ๋๋ค. /v2/co/runt/vehicle-by-plate ์ ์ ์ฒด ์ด๋ ฅ ๋ณด๊ณ ์๋ณด๋ค ๊ฐ๋ฒผ์ด ์ฉ๋์
๋๋ค. ํ์ ์ audit ์ฟผ๋ฆฌ(๋ฌธ์์ด ๋ถ๋ฆฌ์ธ)๋ฅผ ์ง์ํฉ๋๋ค.
ํค๋(Headers)โ
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
๋งค๊ฐ๋ณ์(Parameters)โ
| name | type | required | description |
|---|---|---|---|
documentType | string | yes | ๋ช
์์ ๋ฌธ์ ์ ํ. CC, CE, PA, NIT ์ค ํ๋. |
documentNumber | string | yes | ๋ฌธ์ ๋ฒํธ(๊ณต๋ฐฑยท๊ตฌ๋์ ์์). |
plate | string | yes | ์กฐํํ ๋ฒํธํ(API ๊ฒ์ฆ 5โ9์). ์๋ฒ์์ ๋๋ฌธ์๋ก ์ ๊ทํ๋ฉ๋๋ค. |
์์ฒญ(Request)โ
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/runt/vehiculo", {
params: {
documentType: "CC",
documentNumber: "123456789",
plate: "ABC123",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/runt/vehiculo"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "123456789", "plate": "ABC123"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
์๋ต(Response)โ
- 200
- 404
- 409
{
"data": {
"documentNumber": "31527228",
"documentType": "CC",
"plate": "WHH662",
"vehicle": {
"marca": "MAZDA",
"linea": "T 45",
"modelo": "1999",
"noPlaca": "WHH662",
"estadoDelVehiculo": "ACTIVO",
"tipoServicio": "Pรบblico",
"organismoTransito": "STRIA DE TTOyTTE MEDELLIN"
}
},
"signature": {
"dateTime": "October 10, 2025 8:10 PM",
"message": "Certified by Verifik.co"
},
"id": "GVMFW"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing documentType. missing documentNumber. missing plate"
}
์ฐธ๊ณ (Notes)โ
- ์ ์ฒด ์ด๋ ฅยท๊ธฐ์ ๋ณด๊ณ ์๋
GET /v2/co/runt/vehicle-by-plate๋ฅผ ์ฌ์ฉํ์ธ์. - ๊ฐ์ํ๋ ํ๋กํ์
GET /v2/co/runt/vehicle-by-plate-simplified๋ฅผ ์ฐธ๊ณ ํ์ธ์.