Skip to main content

πŸ‡¨πŸ‡± Chile - Vehicle SOAP (by plate)

Query Chile vehicular SOAP (Seguro Obligatorio de Accidentes Personales) using license plate only. The service resolves SOAP coverage via Boostr, enriches with AACH when a policy number is available, and returns vehicle attributes from Carvuk when SOAP is missing.

Returns a nested payload when the source responds:

  • plate β€” Chilean license plate (Patente), 4–6 alphanumeric characters
  • message β€” empty when SOAP is found; No_active_SOAP_certificate_found_for_this_plate when the vehicle exists but has no active SOAP
  • soap β€” when found: status, policyNumber, insuranceCompany, validFrom, validTo, folioNumber, ownerName, ownerRut, premium
  • vehicle β€” brand, model, year, type, engineNumber
  • Signed Verifik response

Use for insurance compliance, fleet onboarding, and claims workflows when only the plate is known.

Endpoint​

GET v2/cl/vehicle-soap-plate

Headers​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescriptionExample
platestringYesChilean license plate (Patente), 4–6 alphanumeric characters.HTRT86

Request​

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

Response​

{
"data": {
"plate": "HTRT86",
"message": "",
"soap": {
"status": "CERTIFICADO VALIDO",
"policyNumber": "94596506",
"insuranceCompany": "MUTUAL DE SEGUROS DE CHILE",
"validFrom": "01/04/2026",
"validTo": "31/03/2027",
"folioNumber": "FOL789",
"ownerName": "JUAN PEREZ LOPEZ",
"ownerRut": "12.345.678-9",
"premium": "$50.000"
},
"vehicle": {
"brand": "MITSUBISHI",
"model": "L200 KATANA 2.4",
"year": "2016",
"type": "CAMIONETA",
"engineNumber": "ENG123456"
}
},
"signature": {
"dateTime": "July 7, 2026 11:00 AM",
"message": "Certified by Verifik.co"
}
}

Notes​

  • No active SOAP returns HTTP 200 with empty soap and message: No_active_SOAP_certificate_found_for_this_plate β€” not a 404.
  • Example plates (live): CLTK27, HTRT86, RRWX51, THHV64, CSXZ52, CSXZ57 return active SOAP; CSXZ27 returns vehicle data with no active SOAP.
  • Sandbox mode: plates BBCC12–BBCC21 and HTRT86 return stable nested profiles; ERR404 returns 404.
  • For plate + policy lookup, see πŸ‡¨πŸ‡± Chile - Vehicle SOAP.
  • Registry availability is environment-dependent; outages may return 409 timeout errors.