Skip to main content

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

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequired?DescriptionExample
plateStringTrueLicense plate to be queried, without spaces or dots.ABC123

Request

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

Response

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

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