🇨🇱 Chile - SOAP vehicular (por patente)
Consulta el SOAP vehicular (Seguro Obligatorio de Accidentes Personales) usando solo la patente. El servicio consulta Boostr, enriquece con AACH cuando hay póliza y devuelve datos del vehículo desde Carvuk si no hay SOAP activo.
plate— Patente chilena, 4–6 caracteres alfanuméricosmessage— vacío si hay SOAP;No_active_SOAP_certificate_found_for_this_platesi el vehículo existe sin SOAP activosoap—status,policyNumber,insuranceCompany,validFrom,validTo,folioNumber,ownerName,ownerRut,premiumvehicle—brand,model,year,type,engineNumber- Respuesta firmada por Verifik
Útil para cumplimiento de seguros, onboarding de flotas y siniestros cuando solo se conoce la patente.
Endpoint
GET v2/cl/vehicle-soap-plate
Encabezados
| Nombre | Valor |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parámetros
| Nombre | Tipo | Requerido | Descripción | Ejemplo |
|---|---|---|---|---|
plate | string | Sí | Patente chilena, 4–6 caracteres alfanuméricos. | HTRT86 |
Solicitud
- 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())
Respuesta
- 200 SOAP encontrado
- 200 Sin SOAP activo
- 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"
}
Notas
- Sin SOAP activo devuelve HTTP 200 con
soapvacío ymessage: No_active_SOAP_certificate_found_for_this_plate— no es un 404. - Patentes de ejemplo (live):
CLTK27,HTRT86,RRWX51,THHV64,CSXZ52,CSXZ57devuelven SOAP activo;CSXZ27devuelve vehículo sin SOAP activo. - Sandbox: patente
BBCC12–BBCC21yHTRT86devuelven perfiles anidados estables;ERR404devuelve 404. - Para consulta por patente + póliza, ver 🇨🇱 Chile - SOAP vehicular.