šŸ‡¦šŸ‡·Argentina

Service to query Argentine vehicles using the license plate.

Argentinian Vehicle Information

GET - https://api.verifik.co/v2/ar/vehicle

The Argentine Companies Search service by CUIT provides the possibility to obtain detailed information about a company in Argentina using its CUIT number (Unique Tax Identification Key). This functionality is particularly useful for accessing relevant data about the entity, such as its name, economic activity, legal form, and date of constitution, among other details.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

plate

String

True

License 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: 'ABC123'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response

{
  "data": {
    "brand": "FORD",
    "chassis": "",
    "codeRegistrySectional": "13003",
    "headlines": null,
    "isPlateMercosur": "false",
    "model": "FOCUSEXE TREND 1.6L NAFTA",
    "plate": "ABC123",
    "recordAddress": "ALBUERA 554",
    "registrationDenomination": "GENERAL SAN MARTIN NĀ° 1",
    "registrationLocality": "GRAL.SAN MARTIN",
    "registrationProvince": "",
    "type": "MOTOVEHICULO",
    "year": "2011"
  },
  "signature": {
    "dateTime": "December 18, 2023 10:17 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "HYD15"
}

Last updated