๐จ๐ฑ 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 charactershasTheftReportโtruewhen there is an active theft report;falseotherwisedescriptionโ status text (e.g.NO REGISTRA ENCARGO Vigentes)theftReportโ report object:typeCode,plateOriginal,plateFormatted,reportDate,partiallyResolved,itemsitems[]โ 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โ
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parametersโ
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
plate | string | Yes | Chilean license plate (Patente), 4โ7 alphanumeric characters. | PTKX93 |
Requestโ
- Node.js
- Python
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);
url = "https://api.verifik.co/v2/cl/vehicle-stolen"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "PTKX93"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Responseโ
- 200 No active report
- 200 Stolen report found
- 409
{
"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"
}
}
{
"data": {
"description": "REGISTRA ENCARGO Vigentes",
"hasTheftReport": true,
"plate": "NG8245",
"theftReport": {
"typeCode": 1,
"plateOriginal": "NG8245",
"plateFormatted": "NGโ82ยท45",
"reportDate": "22-07-2026 11:40:45",
"partiallyResolved": false,
"items": [
{
"name": null,
"description": "Patente Delantera",
"serial": "NG.8245",
"resolvedDate": null,
"delivered": "No",
"deliveryDate": null,
"type": 1
},
{
"name": null,
"description": "VIN",
"serial": "KMHVF21NPSU188119",
"resolvedDate": null,
"delivered": "No",
"deliveryDate": null,
"type": 3
},
{
"name": null,
"description": "MOTOR",
"serial": "G4EKS443358",
"resolvedDate": null,
"delivered": "No",
"deliveryDate": null,
"type": 4
}
]
}
},
"signature": {
"dateTime": "September 3, 2026 5:00 PM",
"message": "Certified by Verifik.co"
}
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
Notesโ
- No active theft report returns HTTP 200 with
hasTheftReport: falseโ not a 404. - Sandbox mode: plate
PTKX93returns a stable no-encargo profile;NG8245returns a stolen-report profile. - Invalid plate format returns 409
invalid_plate_format. - Registry availability is environment-dependent; outages may return 409 timeout errors.