This API endpoint allows you to verify the information of a vehicle registered in Chile by providing its license plate number. The response includes details such as the chassis number, engine number, manufacturer, model, year, color, and any outstanding fines associated with the vehicle. Additionally, the API also provides information on the vehicle's owner, type, and origin, where available. Please note that you need to provide the license plate number of the vehicle to query its information.
Name | Type | ¿Required? | Description | Example |
---|---|---|---|---|
plate | String | True |
Plate to consult, without spaces or points. | ABC123 |
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/cl/vehicle>',
params: {plate: 'BB985'},
headers: {
Accept: 'application/json',
Authorization: 'jwt <tu_token>'
}
};
try {
notFou const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
{
"data": {
"chasisNumber": "ME1KG0447E2066723",
"color": "NEGRO",
"engineNumber": "1ES3032465",
"fines": "NO POSEE MULTAS",
"manufacturer": "NO DISPONIBLE",
"mark": "YAMAHA",
"model": "FZ 16",
"orderTheft": "NO DISPONIBLE",
"origin": "NO DISPONIBLE",
"owner": "",
"plate": "BB985",
"publicTrans": "NO DISPONIBLE",
"revision": "NO DISPONIBLE",
"rut": "26043542-6",
"type": "MOTO",
"typeTransPub": "NO DISPONIBLE",
"year": "2014"
},
"signature": {
"dateTime": "April 21, 2023 8:32 PM",
"message": "Certified by Verifik.co"
}
}
Code | Description | Response Body | |
---|---|---|---|
404 |
Not Found | Information not found. | { |
"code": "NotFound", | |||
"message": "Placa no encontrada", | |||
"signature": { |
"dateTime": "December 6, 2022 4:29 PM",
"message": "Certified by Verifik.co"
}
}
|
| 409
| Conflict | Some parameters are missing. | {
"code": "MissingParameter",
"message": "missing plate\n"
} |