Skip to main content

RUNT — 按车牌查询车辆(简化)

端点

GET https://api.verifik.co/v2/co/runt/vehicle-by-plate-simplified

RUNT 简化版车辆核查,侧重法律与物理层面的关键状态(相比完整版载荷更小)。通过 查询参数 传入 documentTypedocumentNumberplate

请求头

名称
Acceptapplication/json
AuthorizationBearer <token>

参数

名称类型必填说明
documentTypestring车主证件类型:CCCEPANIT 之一。
documentNumberstring车主证件号码(无空格和句号)。
platestring待查车牌(按 API 校验规则通常为 5–9 位)。

请求

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);

响应

{
"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"
}

说明

  • 简化响应,不包含保险、年检等完整历史(与详细接口不同)。
  • ACTIVO 表示登记有效、可上路运营的示例状态。
  • 可用 VIN、底盘号等识别车辆。
  • 适合快速核验与通行管控。