๐จ๐ท Costa Rica - Vehicle Information
This service returns detailed information about a vehicle registered in Costa Rica using its license plate. Typical data includes the current owner, vehicle specifications (displacement, fiscal value, weights, capacity, power, traction), infraction history, and previous owners when exposed by the source.
Use it for fleet checks, insurance, and compliance workflows.
API Referenceโ
Endpointโ
https://api.verifik.co/v2/cr/vehicle
Send a GET request with the plate query parameter (no spaces or punctuation). A successful response includes structured vehicle data, owner fields, and history arrays when available.
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. | AA123BA |
Sandbox clients can use plates AA123BAโAA123BJ for stable demo profiles; ERR40401 returns 404.
Requestโ
- Node.js
- Python
- PHP
- Swift
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/cr/vehicle", {
params: { plate: "AA123BA" },
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);
import http.client
conn = http.client.HTTPSConnection("api.verifik.co")
payload = ''
headers = {}
conn.request("GET", "/v2/cr/vehicle?plate=AA123BA", 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/cr/vehicle?plate=AA123BA');
$request->setMethod(HTTP_Request2::METHOD_GET);
$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/cr/vehicle?plate=AA123BA")!,timeoutInterval: Double.infinity)
request.httpMethod = "GET"
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
{
"data": {
"currentOwner": "MARIA ELENA LOPEZ GARCIA",
"dataVehicle": {
"engineDisplacement": "1600",
"estateValue": "$15000000",
"grossWeight": "1850 kg",
"netWeight": "1420 kg",
"noVin": "JTD00000001",
"occupants": "5",
"power": "120 HP",
"traction": "4x2"
},
"infractions": [],
"ownerHistory": [
{
"date": "15/01/2020",
"fullName": "MARIA ELENA LOPEZ GARCIA"
},
{
"date": "10/06/2015",
"fullName": "JOSE ANTONIO PEREZ RODRIGUEZ"
}
],
"plate": "AA123BA",
"vehicle": "TOYOTA COROLLA XLI"
},
"signature": {
"dateTime": "July 27, 2026 3:00 PM",
"message": "Certified by Verifik.co"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
Featuresโ
- Vehicle Information Retrieval: Get comprehensive vehicle details from Costa Rican vehicle registry
- License Plate Validation: Verify vehicle license plates registered in Costa Rica
- Current Owner Information: Retrieve current vehicle owner details
- Vehicle Specifications: Get engine displacement, fiscal value, weight, capacity, power, and traction
- Infraction History: Access complete history of traffic violations and infractions
- Owner History: View chronological list of all previous vehicle owners
- Judicial Authority: Get information about judicial authorities handling infractions
- Ticket Information: Access ticket numbers and summary numbers for infractions
- Multiple Programming Languages: Support for JavaScript, Python, PHP, and Swift
- Real-time Data: Access current and up-to-date vehicle information
- Comprehensive Error Handling: Detailed error responses for various scenarios
- Costa Rican Registry Integration: Direct access to official Costa Rican vehicle database