🇨🇴Sinister Verification - Fasecolda

Service to check if a vehicle has been involved in accidents using the license plate.

Sinister Verification - Fasecolda

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

The Fasecolda Sinister Verification service provides a detailed digital platform for checking the insurance claim history of vehicles in Colombia. By entering a vehicle's license plate, users can access comprehensive information about any registered insurance claims associated with that vehicle.

The service returns a unique request identifier, the vehicle's license plate number, and a list of insurance claim records. Each record includes the claim ID, accident date, and the type of protection applied, indicating the severity of the loss. This service is essential for assessing a vehicle's insurance history and understanding any potential risks or issues.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

plate

String

True

Plate of the vehicle to consult, without spaces or periods.

ABC123

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/fasecolda/sinister>',
  params: {plate: 'ABC123'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

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"
      },
      {
        "id": "4",
        "accidentDate": "14/03/2014",
        "protection": "Pérdida Menor Cuantía"
      },
      {
        "id": "5",
        "accidentDate": "13/08/2019",
        "protection": "Pérdida Menor Cuantía"
      }
    ]
  },
  "signature": {
    "dateTime": "February 9, 2024 7:43 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "PFDB2"
}

Last updated