Skip to main content

Fasecolda — 理赔 / 事故记录

Endpoint

GET https://api.verifik.co/v2/co/fasecolda/sinister

从 Fasecolda 官方数据查询车辆的保险事故与理赔历史。通过查询参数 plate 传入哥伦比亚车牌。

请求头(Headers)

名称取值
Acceptapplication/json
AuthorizationBearer <token>

参数(Parameters)

名称类型必填描述
platestring待查询车牌,不含空格或圆点。

请求(Request)

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/fasecolda/sinister", {
params: { plate: "ABC123" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

响应(Response)

{
"data": {
"plate": "KDK605",
"sinister": [
{
"id": "1",
"accidentDate": "20/01/2015",
"protection": "Pérdida Menor Cuantía"
},
{
"id": "2",
"accidentDate": "17/08/2012",
"protection": "Pérdida Menor Cuantía"
},
{
"id": "3",
"accidentDate": "16/01/2017",
"protection": "Pérdida Menor Cuantía"
}
]
},
"signature": {"message": "Certified by Verifik.co", "dateTime": "February 9, 2024 7:43 PM"},
"id": "PFDB2"
}

说明

  • 路径中的 sinister 对应哥伦比亚保险语境下的理赔 / 事故记录。
  • Pérdida Menor Cuantía 表示小额损失类理赔(示例值)。
  • 每条记录可包含理赔编号、事故日期与保障类型等字段。