๐จ๐ด RUNT โ ์ฐจ๋ ํ์ธ(๊ฐํธ)
์๋ํฌ์ธํธโ
GET https://api.verifik.co/v2/co/runt/vehicle-by-plate-simplified
์ฐจ๋ ์ด๋ ฅ ์กฐํ์ ๊ฐํธ ๋ฒ์ ์ผ๋ก, ๋ณดํยท๊ฒ์ฌ ์ด๋ ฅ๋ณด๋ค ๋ฒ์ ยท๋ฌผ๋ฆฌ์ ํต์ฌ ์งํ๋ฅผ ๋น ๋ฅด๊ฒ ํ์ธํ ๋ ์ฐ์
๋๋ค. ์ฟผ๋ฆฌ๋ก documentType, documentNumber, plate ๋ฅผ ๋ณด๋
๋๋ค.
ํค๋(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/vehicle-by-plate-simplified", {
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/vehicle-by-plate-simplified"
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
- 500
{
"data": {
"documentNumber": "31527228",
"documentType": "CC",
"plate": "WHH662",
"vehicle": {
"capacidadCarga": "0 KILO",
"cilindraje": "4500",
"clasificacion": "AUTOMOVIL",
"color": "BLANCO VERDE",
"diasMatriculado": "6686",
"esRegrabadoChasis": "NO",
"esRegrabadoMotor": "NO",
"esRegrabadoSerie": "SI",
"esRegrabadoVin": "NO",
"homologaciones": [],
"idTipoServicio": "2",
"linea": "T 45",
"marca": "MAZDA",
"modelo": "1999",
"mostrarSolicitudes": "SI",
"noChasis": "T45LB00445",
"noPlaca": "WHH662",
"numRegraSerie": "T45LB9900385RG",
"organismoTransito": "STRIA DE TTOyTTE MEDELLIN",
"pasajerosSentados": "30",
"pesoBruto": null,
"prendas": "NO",
"puertas": "2",
"repotenciado": "NO",
"seguridadEstado": "NO",
"tarjetaServicio": "SI",
"tieneLTImportacion": true,
"tipoCarroceria": "CERRADA",
"tipoCombustible": "DIESEL",
"tipoServicio": "Pรบblico",
"toneladas": "0.00",
"validacionDIAN": "Exitoso",
"vehiculoEnsenanza": "NO",
"verValidaDIAN": false
}
},
"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"
}
{
"code": "MissingParameter",
"message": "documentType must be one of: [CC, CE, PA, NIT]"
}
{
"code": "MissingParameter",
"message": "missing documentNumber\n"
}
{
"code": "MissingParameter",
"message": "missing documentType\n"
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
{
"code": "InternalServerError",
"message": "Server error."
}
์ฐธ๊ณ (Notes)โ
- ์์ธ ์กฐํ์ ๋ฌ๋ฆฌ ๋ณดํยท๊ฒ์ฌ ์ด๋ ฅ ๋ฑ ์ ์ฒด ๋ฐ์ดํฐ๋ ํฌํจํ์ง ์๋ ๊ฐ๋จ ์๋ต์ ๋๋ค.
- ACTIVO ๋ ๋ฑ๋ก์ด ์ ํจํ๊ณ ์ดํ ๊ฐ๋ฅํ ์ํ์ ์์์ ๋๋ค.
- VINยท์ค์ ๋ฒํธ ๋ฑ์ผ๋ก ์ฐจ๋์ ์๋ณํ ์ ์์ต๋๋ค.
- ๋น ๋ฅธ ์ฐจ๋ ํ์ธยท์ถ์ ํต์ ์ ์ ํฉํฉ๋๋ค.