SIMIT — 驾照停用
端点
GET https://api.verifik.co/v2/co/simit/suspensiones
在 SIMIT 中查询驾驶证暂停或吊销及相关信息(数据源提供时可能含决议编号、日期等)。使用 documentType 与 documentNumber 标识持有人。
请求头
| 名称 | 值 |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
参数
| 名称 | 类型 | 必填 | 说明 |
|---|---|---|---|
documentType | string | 是 | 持有人证件类型,如 CC、PA、CE、TI、RC、NIT。 |
documentNumber | string | 是 | 证件号码,无空格和标点。超出长度限制时可能返回 409。 |
请求
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/simit/suspensiones", {
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/simit/suspensiones"
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": "123456789",
"firstName": "JUAN CARLOS",
"lastName": "PEREZ LOPEZ",
"fullName": "JUAN CARLOS PEREZ LOPEZ",
"suspensiones": [
{
"numeroResolucion": "RES-2024-000123",
"fechaSuspension": "2024/03/15",
"estado": "VIGENTE",
"motivo": "Sanción por acumulación de puntos"
}
]
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "April 8, 2026 11:00 PM"
},
"id": "IDNT1"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing documentType. missing documentNumber"
}
说明
- SIMIT 为哥伦比亚全国交通违法与处罚信息系统。
data的具体字段以 SIMIT 上游返回为准,示例仅作参考。