π¨π± Chile - Vehicle Technical Review
Use this endpoint when you need Chilean technical review / inspection data by license plate: vehicle details, inspection plant, certificate number, expiration date, and review status.
Related Chile vehicle endpoints:
- Vehicle Information (
v2/cl/vehicle): general vehicle registry data such as make, model, owner RUT, engine, chassis, fines, and theft flags. - Vehicle Technical Review (
v3/cl/vehicle): technical inspection status and history. - Vehicle SOAP (
v2/cl/vehicle-soap): mandatory personal accident insurance certificate by plate and policy number.
Endpointβ
GET https://api.verifik.co/v3/cl/vehicle
Headersβ
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parametersβ
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
plate | string | Yes | Chilean license plate in a v3-supported format, such as four letters plus two digits or two letters plus four digits. | XH6640 |
Requestβ
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v3/cl/vehicle", {
params: { plate: "XH6640" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v3/cl/vehicle"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "XH6640"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Responseβ
- 200
- 404
- 409 Invalid_plate_format
- 409 timeout_data_source
{
"data": {
"plate": "XH6640",
"vehicle": {
"plate": "XH6640",
"type": "CAMIONETA (CAP. DE CARGA MENOR A 1.750 KGS.) [B] (A2)",
"mark": "PEUGEOT",
"model": "PARTNER TOLE 1.9",
"year": "2004",
"engineNumber": "10DXDM0003203",
"chasisNumber": "60548210",
"vin": null,
"sealType": "SELLO VERDE"
},
"history": [
{
"date": "2026-01-12",
"plantCode": "PRT-014",
"plantName": "REVISIONES METROPOLITANA",
"certificateNumber": "RT-XH6640-2026",
"expirationDate": "2027-01-12",
"status": "APROBADA"
}
]
},
"signature": {
"dateTime": "June 30, 2026 12:00 PM",
"message": "Certified by Verifik.co"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "Invalid_plate_format",
"message": "Plate must match Chile vehicle format ABCD12 (4 letters and 2 digits) or XH6640 (2 letters and 4 digits)"
}
{
"code": "timeout_data_source",
"message": "timeout_data_source"
}
Notesβ
XH6640,FHDJ31, andDCCH18return stable technical review profiles.BB985returns409 Invalid_plate_formatbecause it does not match the v3 plate format.