RUNT — ナンバー別車両(簡易)
エンドポイント
GET https://api.verifik.co/v2/co/runt/vehicle-by-plate-simplified
車両歴照会の簡易版です。保険・検査履歴などの詳細よりも、法的・物理的な主な状態を素早く確認する用途向けです。クエリに documentType、documentNumber、plate を指定します。
ヘッダー
| 名前 | 値 |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
パラメーター
| 名前 | 型 | 必須 | 説明 |
|---|---|---|---|
documentType | string | はい | 名義人の証明書種別。CC、CE、PA、NIT のいずれか。 |
documentNumber | string | はい | 名義人の証番号(スペース・句点なし)。 |
plate | string | はい | 照会するナンバー(API の検証ルール上、通常 5〜9 文字)。 |
リクエスト
- 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())
レスポンス
- 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."
}
メモ
- 詳細版と異なり、保険・点検履歴などの網羅的データは含まれない簡易応答です。
- ACTIVO は登録が有効で運用可能な状態を指す例です。
- VIN・シャーシ番号などは車両同定に利用できます。
- 迅速な車両確認・アクセス制御向けです。