Skip to main content

🇨🇴 Fasecolda — 사고·보험 청구 이력

엔드포인트

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

Fasecolda 기록에서 차량의 보험 사고·청구(sinister) 이력을 조회합니다. 콜롬비아 번호판 plate쿼리(?plate=)로 보냅니다.

헤더(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

매개변수(Parameters)

nametyperequireddescription
platestringyes조회할 번호판. 공백·마침표 없이 입력합니다.

요청(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"
}

참고(Notes)

  • sinister 는 콜롬비아 보험에서 사고·청구를 가리키는 용어로 쓰입니다.
  • Pérdida Menor Cuantía 는 소액/경미한 손해 구분의 예입니다.
  • 각 항목에는 청구 ID·사고일·보장 유형 등이 포함될 수 있습니다.