Skip to main content

RUNT — 车辆(基本登记)

端点

GET https://api.verifik.co/v2/co/runt/vehiculo

根据 车牌 与车主 documentTypedocumentNumberRUNT 获取车辆信息,侧重登记与基本技术字段;完整历史报告请用 /v2/co/runt/vehicle-by-plate。可选查询参数 audit(字符串布尔)。

请求头

名称
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/vehiculo", {
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": {
"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"
}

说明

  • 完整历史:GET /v2/co/runt/vehicle-by-plate
  • 轻量版本:GET /v2/co/runt/vehicle-by-plate-simplified