🇪🇨 厄瓜多尔 — 车辆罚单
按车牌查询厄瓜多尔车辆登记信息(号牌、级别、型号、状态、服务类型、登记到期日等)及关联未缴罚单,便于合规与车队管理。
端点
GET https://api.verifik.co/v2/ec/vehiculo/placa/multas
使用 plate 查询登记详情与 multas 罚单列表。
标头
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
参数
| name | type | required | description |
|---|---|---|---|
plate | string | yes | 车牌,不含空格或句点。 |
请求
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/ec/vehiculo/placa/multas", {
params: { plate: "ABC1234" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/ec/vehiculo/placa/multas"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "ABC1234"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
响应
- 200
- 404
- 409
{
"data": {
"plate": "ABC1234",
"class": "AUTOMOVIL",
"model": "SENTRA 1.6 M/T",
"status": "ASIGNADO",
"service": "PARTICULAR",
"registrationExpirationDate": "2024/03/19",
"total": "76.72",
"multas": [
{
"id": "1",
"infraccion": "92507343",
"entidad": "MNO-MANCOMUNIDAD DEL NORTE",
"totalAPagar": "23"
}
]
},
"signature": {
"dateTime": "March 12, 2024 7:50 PM",
"message": "Certified by Verifik.co"
},
"id": "OB2YV"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
备注
multas数组包含罚单实体、 citation、金额与法律依据等字段(视数据源返回而定)。