Argentina - Vehicle v3
Endpoint
GET https://api.verifik.co/v3/ar/vehicle
Use this endpoint to retrieve Argentine vehicle details from a license plate. The response includes normalized vehicle identifiers such as engine number, chassis, brand, model, year, color, unit type, active policy status, and technical-sheet fields when available.
Headers
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
plate | string | Yes | Vehicle license plate to query, without spaces or punctuation. Example: ABC10001. |
Request
- JavaScript
- Python
import axios from 'axios';
const { data } = await axios.get('https://api.verifik.co/v3/ar/vehicle', {
params: { plate: 'ABC10001' },
headers: {
Accept: 'application/json',
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os
import requests
url = "https://api.verifik.co/v3/ar/vehicle"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "ABC10001"}
response = requests.get(url, headers=headers, params=params)
print(response.json())
Response
- 200
- 404
- 409
- 500
{
"data": {
"brand": "TOYOTA",
"chassis": "AR10000001CH",
"color": "BLANCO",
"engineNumber": "AR10000001M",
"isActivePolicyFound": false,
"model": "COROLLA 2020",
"modelGroup": "COROLLA",
"plate": "ABC10001",
"technicalSheet": {
"engine": {
"engineDescription": "1.6L",
"fuel": "NAFTA",
"powerHp": "110"
},
"performance": {
"cityConsumption": "10 km/L",
"highwayConsumption": "14 km/L"
},
"dimensions": {
"doors": "4",
"occupants": "5"
}
},
"type": "AUTOMOVIL",
"year": "2020"
},
"signature": {
"dateTime": "July 1, 2026 10:00 AM",
"message": "Certified by Verifik.co"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
{
"code": "InternalServerError",
"message": "Server error."
}
Response fields
| Field | Type | Description |
|---|---|---|
plate | string | Normalized vehicle plate. |
engineNumber | string | null | Engine number returned by the source. |
chassis | string | null | Chassis identifier returned by the source. |
year | string | null | Vehicle year. |
brand | string | null | Vehicle brand. |
modelGroup | string | null | Model family or group. |
model | string | null | Vehicle model/version label. |
color | string | null | Registered color. |
type | string | null | Vehicle unit type. |
isActivePolicyFound | boolean | Whether an active policy was found for the vehicle. |
technicalSheet | object | null | Technical-sheet data when available. |
Notes
technicalSheetcan benullor partially populated when matching technical data is unavailable.- The service normalizes plate casing before querying the source.