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.

Parameters

Name Type ¿Required? Description Example
plate String True License plate to be queried, without spaces or dots. ABC123

Implementation

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 200 - (Successful 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"
}

Other Responses

Code Description Response Body
404 Not Found Information not found. {
"code": "NotFound",
"message": "Record not found.",
"signature": {
"dateTime": "August 31, 2022 3:24 PM",
"message": "Certified by Verifik.co"
}
}
409 Conflict Some parameters are missing. {
"code": "MissingParameter",
"message": "missing plate\n"
}