Skip to main content

πŸ‡¨πŸ‡± 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​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescriptionExample
platestringYesChilean license plate in a v3-supported format, such as four letters plus two digits or two letters plus four digits.XH6640

Request​

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);

Response​

{
"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"
}
}

Notes​

  • XH6640, FHDJ31, and DCCH18 return stable technical review profiles.
  • BB985 returns 409 Invalid_plate_format because it does not match the v3 plate format.