RUNT — 驾驶证
端点
GET https://api.verifik.co/v2/co/runt/conductor
通过 documentType 与 documentNumber 查询 RUNT 登记的驾驶证信息。响应可包含状态、准驾类别、证明与申请记录、违法提示等。
请求头
| 名称 | 值 |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
参数
| 名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
documentType | string | 是 | 证件类型。API 允许:CC、CE、PA、PPT。 |
documentNumber | string | 是 | 证件号码(无空格和句号)。 |
请求
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/runt/conductor", {
params: { documentType: "CC", documentNumber: "123456789" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/runt/conductor"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "123456789"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
响应
- 200
- 404
- 409
{
"data": {
"documentType": "CC",
"documentNumber": "63535709",
"fullName": "ARLETH PATRICIA RUEDA CORREA",
"driverStatus": "ACTIVO",
"citizenStatus": "ACTIVA",
"licenses": [
{
"category": "B1",
"status": "ACTIVA",
"dueDate": "19/09/2034",
"expeditionDate": "19/09/2024"
}
],
"infractions": {
"tieneMultas": "NO"
}
},
"signature": {
"dateTime": "October 10, 2025 7:29 PM",
"message": "Certified by Verifik.co"
},
"id": "3R2V0"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing documentType. missing documentNumber"
}
说明
- 字段结构以 RUNT 返回为准。
- 本接口校验的证件类型为
CC、CE、PA、PPT。