Skip to main content

Peru - Vehicle Insurance

Endpoint

https://api.verifik.co/v2/pe/vehiculo/soat

This service provides information on the insurance status of a vehicle in Peru. It returns details including the insurance company name, policy start and end dates, vehicle plate number, policy number, usage type, vehicle class, and policy status.

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescription
platestringYesPlate number to consult, without spaces or points.

Request

import axios from 'axios';

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

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

Response

{
"data": {
"plate": "ABC123",
"soat": {
"ConsultarSoatResult": {
"NombreCompania": "Interseguro",
"FechaInicio": "27/04/2022",
"FechaFin": "27/04/2023",
"Placa": "ABC123",
"NúmeroPoliza": "000000000000000000001",
"NombreUsovehiculo": "PARTICULAR",
"NombreClasevehiculo": "AUTOMOVIL",
"Estado": "VIGENTE",
"CodigoUnicoPoliza": "0000000000000000000000008",
"CodigoSBSAseguradora": "001",
"FechaControlPolicial": "26/04/2022"
}
}
},
"signature": {
"dateTime": "July 19, 2022 3:08 PM",
"message": "Certified by Verifik.co"
}
}

Use Cases

  • SOAT Verification: Validate the current status of mandatory traffic accident insurance
  • Insurance Services: Verify active policies and expiration dates
  • Traffic Control: Validate compliance with mandatory insurance
  • Transportation Companies: Verify fleet vehicle insurance
  • Compliance Verification: Confirm policy validity

Features

  • ✅ Query by license plate number
  • ✅ Complete SOAT policy information
  • ✅ Insurance company name
  • ✅ Policy start and end dates
  • ✅ Policy status (ACTIVE/INACTIVE)
  • ✅ Unique policy code
  • ✅ SBS insurer code
  • ✅ Police control date
  • ✅ Certified response by Verifik.co