Skip to main content

πŸ‡¨πŸ‡± Chile - Vehicle SOAP

Chilean vehicular SOAP (Seguro Obligatorio de Accidentes Personales) lookup validates mandatory personal accident insurance for a vehicle registered in Chile. Query by license plate and policy number to retrieve insurer, owner, validity dates, and vehicle attributes from the AACH registry.

Vehicle SOAP Lookup​

Endpoint​

https://api.verifik.co/v2/cl/vehicle-soap

Query by license plate (plate) and policy number (policyNumber; the service uses the last four digits against the AACH registry). Typical fields include status, insuranceCompany, ownerName, ownerRut, validFrom, validTo, brand, model, manufactureYear, engineNumber, and premiumβ€”use for insurance compliance, fleet onboarding, and claims workflows.

Headers​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescriptionExample
platestringYesChilean license plate (Patente), 4–6 alphanumeric characters.HTRT86
policyNumberstringYesPolicy number; the last four digits are used for the AACH SOAP lookup.94596506

Request​

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/cl/vehicle-soap", {
params: { plate: "HTRT86", policyNumber: "94596506" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Response​

{
"data": {
"status": "VIGENTE",
"plate": "HTRT86",
"policyNumber": "94596506",
"vehicleType": "AUTOMOVIL",
"brand": "TOYOTA",
"model": "COROLLA",
"manufactureYear": "2019",
"engineNumber": "ENG123456",
"folioNumber": "FOL789",
"insuranceCompany": "MAPFRE",
"ownerName": "JUAN PEREZ LOPEZ",
"ownerRut": "12.345.678-9",
"validFrom": "01/01/2026",
"validTo": "31/12/2026",
"premium": "$50.000"
},
"signature": {
"dateTime": "June 30, 2026 12:00 PM",
"message": "Certified by Verifik.co"
}
}

Notes​

  • Sandbox mode: plates AB1001–AB1010 return fixed SOAP profiles (AB1004 = VENCIDO); HTRT86 + policyNumber=94596506 returns the live-style demo profile; ERR404 returns 404; unmapped plates return random 200.
  • Sandbox examples: AB1001/94590001 (sedan, MAPFRE), AB1007/94590007 (pickup, CHUBB), HTRT86/94596506 (TOYOTA COROLLA demo).
  • For general Chile private vehicle lookup, see πŸ‡¨πŸ‡± Chile - Vehicle Information.
  • Registry availability is environment-dependent; outages may return 409 timeout errors.