西班牙
API 参考
Endpoint
https://api.verifik.co/v2/es/vehicle
按西班牙车牌返回车辆信息,命中匹配时包含品牌、车型、年份及车辆类型等字段。
请求头(Headers)
| 名称 | 取值 |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
参数(Parameters)
| 名称 | 类型 | 必填 | 描述 |
|---|---|---|---|
plate | string | 是 | 待查询的车牌(不含空格)。 |
请求(Request)
- JavaScript
- cURL
import axios from "axios";
const options = {
method: "GET",
url: "https://api.verifik.co/v2/es/vehicle",
params: { plate: "5684CCD" },
headers: {
Accept: "application/json",
Authorization: "Bearer <your_token>",
},
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
curl -X GET "https://api.verifik.co/v2/es/vehicle?plate=5684CCD" \
-H "Accept: application/json" \
-H "Authorization: Bearer <your_token>"
响应(Response)
- 200
- 404
- 409
{
"data": {
"plate": "5684CCD",
"brand": "MAKE",
"model": "MODEL",
"year": "2020",
"vehicleType": "SEDAN"
},
"signature": {
"dateTime": "April 8, 2026 11:00 PM",
"message": "Certified by Verifik.co"
},
"id": "VHCL1"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "plate format invalid."
}
使用场景
- 保险与承保:通过车牌确认车辆属性。
- 平台与物流:核验车队或挂牌车辆。
- 合规:辅助与西班牙登记车辆相关的合规检查。