π¨π± Chile - Vehicle Information
Chilean vehicle validation service provides comprehensive verification capabilities for vehicle information. This service allows you to retrieve detailed information about vehicles registered in Chile.
Related Chile vehicle endpoints:
- Vehicle Information (
v2/cl/vehicle): general vehicle registry data. - Vehicle Technical Review (
v3/cl/vehicle): technical review status and inspection history. See Chile - Vehicle Technical Review. - Vehicle SOAP (
v2/cl/vehicle-soap): mandatory personal accident insurance certificate. See Chile - Vehicle SOAP.
Vehicle Information Lookupβ
Endpointβ
https://api.verifik.co/v2/cl/vehicle
Query by license plate (plate, no spaces or dots). Typical fields include make, model, year, VIN/chassis, engine, color, vehicle type, fines summary, and owner RUT when the registry exposes themβuse for fleet onboarding, collateral checks, and claims workflows.
Headersβ
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parametersβ
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
plate | string | Yes | Plate to consult, without spaces or points. | ABC123 |
Requestβ
- Node.js
- JavaScript
- Python
- PHP
- Swift
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/cl/vehicle", {
params: { plate: "BB985" },
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/cl/vehicle',
params: {
plate: 'BB985'
},
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer <tu_token>'
}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
import http.client
conn = http.client.HTTPSConnection("api.verifik.co")
payload = ''
headers = {
"Accept": "application/json",
"Authorization": "Bearer <tu_token>",
}
conn.request("GET", "/v2/cl/vehicle?plate=BB985", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.verifik.co/v2/cl/vehicle?plate=BB985');
$request->setMethod(HTTP_Request2::METHOD_GET);
$request->setHeader('Accept', 'application/json');
$request->setHeader('Authorization', 'Bearer <tu_token>');
$request->setConfig(array(
'follow_redirects' => TRUE
));
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
}
else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
$response->getReasonPhrase();
}
}
catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}
?>
var request = URLRequest(url: URL(string: "https://api.verifik.co/v2/cl/vehicle?plate=BB985")!,timeoutInterval: Double.infinity)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue("Bearer <tu_token>", forHTTPHeaderField: "Authorization")
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data else {
print(String(describing: error))
return
}
print(String(data: data, encoding: .utf8)!)
}
task.resume()
Responseβ
- 200
- 404
- 409
- 500
{
"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": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
{
"code": "InternalServerError",
"message": "Server error."
}
Featuresβ
Vehicle Information Lookupβ
- Vehicle Registration: Verify vehicle registration in Chile
- Technical Specifications: Get chassis number, engine number, manufacturer, model
- Vehicle Details: Access year, color, and type information
- Owner Information: Retrieve vehicle owner RUT and details
- Fine Status: Check for outstanding fines associated with the vehicle
- Theft Status: Verify if vehicle has theft orders
- Public Transport: Check public transport classification
General Featuresβ
- Multiple Programming Languages: Support for JavaScript, Python, PHP, and Swift
- Real-time Data: Access current and up-to-date information
- Comprehensive Error Handling: Detailed error responses for various scenarios
- Structured Responses: Well-formatted JSON responses with signature verification
- Chilean Registry Integration: Direct access to official Chilean vehicle database