Argentina
Endpointβ
https://api.verifik.co/v2/ar/vehicle
The Argentine Vehicle Information service provides detailed information about vehicles registered in Argentina using their license plate number. This service returns comprehensive vehicle data including make, model, year, engine specifications, and registration details.
Headersβ
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
Parametersβ
| Name | Type | Required? | Description | Example |
|---|---|---|---|---|
| plate | String | True | License plate to be queried, without spaces or dots. | ABC123 |
Requestβ
- JavaScript
- PHP
- Python
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/ar/vehicle',
params: {plate: 'AE834AM'},
headers: {
Accept: 'application/json',
Authorization: 'Bearer <your_token>'
}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
<?php
$ch = curl_init("https://api.verifik.co/v2/ar/vehicle");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Accept: application/json",
"Authorization: Bearer " . getenv("VERIFIK_TOKEN")
]);
$query = http_build_query([
"plate" => "AE834AM"
]);
curl_setopt($ch, CURLOPT_URL, "https://api.verifik.co/v2/ar/vehicle?".$query);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
import os, requests
url = "https://api.verifik.co/v2/ar/vehicle"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "AE834AM"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Responseβ
- 200
- 404
- 409
- 500
{
"data": {
"brand": "HERMANN",
"codeRegistrySectional": "2097",
"isPlateMercosur": "true",
"model": "FURGON",
"plate": "AE834AM",
"recordAddress": "AV. CORRIENTES 2063 PISO: 1 DPTO: 35",
"registrationDenomination": "CAPITAL FEDERAL NΒ° 097",
"registrationLocality": "CABA",
"registrationProvince": "",
"type": "MOTOVEHICULO",
"version": "S.FP.3E.98 2+1",
"year": "2021"
},
"signature": {
"dateTime": "October 10, 2025 6:21 PM",
"message": "Certified by Verifik.co"
},
"id": "2SJOD"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
{
"code": "InternalServerError",
"message": "Server error."
}
Use Casesβ
- Insurance Verification: Verify vehicle details for insurance purposes
- Car Dealerships: Validate vehicle information before purchase
- Fleet Management: Track company vehicle information
- Law Enforcement: Verify vehicle registration and ownership
- Due Diligence: Verify vehicle information for transactions