Skip to main content

๐Ÿ‡จ๐Ÿ‡ฑ Chile - Stolen Vehicle

Check whether a Chilean vehicle has an active stolen or theft report (encargo por robo o hurto).

Returns a signed payload when the lookup succeeds:

  • plate โ€” Chilean license plate (Patente), 4โ€“7 alphanumeric characters
  • hasTheftReport โ€” true when there is an active theft report; false otherwise
  • description โ€” status text (e.g. NO REGISTRA ENCARGO Vigentes)
  • theftReport โ€” report object: typeCode, plateOriginal, plateFormatted, reportDate, partiallyResolved, items
  • items[] โ€” stolen parts: name, description, serial, resolvedDate, delivered, deliveryDate, type
  • Signed Verifik response

Use for insurance underwriting, fleet onboarding, and asset due diligence before registering or financing a Chilean vehicle.

Endpointโ€‹

GET v2/cl/vehicle-stolen

Typical fields: plate, hasTheftReport, description, and nested theftReport. A vehicle with no active encargo still returns HTTP 200.

Headersโ€‹

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parametersโ€‹

NameTypeRequiredDescriptionExample
platestringYesChilean license plate (Patente), 4โ€“7 alphanumeric characters.PTKX93

Requestโ€‹

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

Responseโ€‹

{
"data": {
"description": "NO REGISTRA ENCARGO Vigentes",
"hasTheftReport": false,
"plate": "PTKX93",
"theftReport": {
"typeCode": 0,
"plateOriginal": "PTKX93",
"plateFormatted": null,
"reportDate": "",
"partiallyResolved": false,
"items": []
}
},
"signature": {
"dateTime": "September 3, 2026 5:00 PM",
"message": "Certified by Verifik.co"
}
}

Notesโ€‹

  • No active theft report returns HTTP 200 with hasTheftReport: false โ€” not a 404.
  • Sandbox mode: plate PTKX93 returns a stable no-encargo profile; NG8245 returns a stolen-report profile.
  • Invalid plate format returns 409 invalid_plate_format.
  • Registry availability is environment-dependent; outages may return 409 timeout errors.