Skip to main content

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

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescription
platestringYesVehicle license plate to query, without spaces or punctuation. Example: ABC10001.

Request

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);

Response

{
"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"
}
}

Response fields

FieldTypeDescription
platestringNormalized vehicle plate.
engineNumberstring | nullEngine number returned by the source.
chassisstring | nullChassis identifier returned by the source.
yearstring | nullVehicle year.
brandstring | nullVehicle brand.
modelGroupstring | nullModel family or group.
modelstring | nullVehicle model/version label.
colorstring | nullRegistered color.
typestring | nullVehicle unit type.
isActivePolicyFoundbooleanWhether an active policy was found for the vehicle.
technicalSheetobject | nullTechnical-sheet data when available.

Notes

  • technicalSheet can be null or partially populated when matching technical data is unavailable.
  • The service normalizes plate casing before querying the source.