π¨π± 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 charactersmessageβ empty when SOAP is found;No_active_SOAP_certificate_found_for_this_platewhen the vehicle exists but has no active SOAPsoapβ when found:status,policyNumber,insuranceCompany,validFrom,validTo,folioNumber,ownerName,ownerRut,premiumvehicleβ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β
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parametersβ
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
plate | string | Yes | Chilean license plate (Patente), 4β6 alphanumeric characters. | HTRT86 |
Requestβ
- Node.js
- Python
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);
url = "https://api.verifik.co/v2/cl/vehicle-soap-plate"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "HTRT86"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Responseβ
- 200 SOAP found
- 200 No active SOAP
- 404
- 409
{
"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"
}
}
{
"data": {
"plate": "CSXZ27",
"message": "No_active_SOAP_certificate_found_for_this_plate",
"soap": {},
"vehicle": {
"brand": "MAHINDRA",
"model": "PIK UP",
"year": "2011",
"type": "",
"engineNumber": ""
}
},
"signature": {
"dateTime": "July 7, 2026 11:00 AM",
"message": "Certified by Verifik.co"
}
}
{
"code": "NotFound",
"message": "Vehicle_not_found_for_this_plate"
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
Notesβ
- No active SOAP returns HTTP 200 with empty
soapandmessage: No_active_SOAP_certificate_found_for_this_plateβ not a 404. - Example plates (live):
CLTK27,HTRT86,RRWX51,THHV64,CSXZ52,CSXZ57return active SOAP;CSXZ27returns vehicle data with no active SOAP. - Sandbox mode: plates
BBCC12βBBCC21andHTRT86return stable nested profiles;ERR404returns 404. - For plate + policy lookup, see π¨π± Chile - Vehicle SOAP.
- Registry availability is environment-dependent; outages may return 409 timeout errors.