The Brazilian Vehicle information service allows you to verify the authenticity of Brazilian vehicle information by providing the vehicle's license plate number. The service returns detailed information about the vehicle, including its brand, model, year of manufacture, engine, transmission, fuel type, and more.

This service is useful for car dealerships, insurance companies, and any business or individual looking to verify Brazilian vehicle information.

Parameters

Name Type ¿Required? Description Example
plate String True Plate to consult, without spaces or points. ABC0123

Implementation

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/br/vehicle>',
  params: {plate: 'ABC1D345'},
  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": {
    "bodyType": "Sedan",
    "brand": "TOYOTA",
    "chassis": "12345678987654321",
    "color": "PRETA",
    "country": "Brasil",
    "denatranWarning": "",
    "doors": 4,
    "engine": "1.8 16V VVT-i",
    "factory": "Indaiatuba - SP",
    "fipeCodes": [
      "002027-3",
      "002062-1"
    ],
    "fuelType": "Flexivel Alcool/Gasolina",
    "irregularitiesCount": 0,
    "irregularityCode": "",
    "manufacturer": "TOYOTA",
    "model": "Corolla XLi 1.8 16V VVT-i Flex 4P",
    "modelYear": 2011,
    "plate": "ABC1D345",
    "transmission": "",
    "vehicle": "Corolla",
    "version": "XLi",
    "yearOfManufacture": 2010
  },
  "signature": {
    "dateTime": "April 3, 2023 2:21 PM",
    "message": "Certified by Verifik.co"
  }
}

Other responses

Code Description Response Body
404 Not Found Information not found. {
"code": "NotFound",
"message": "brazilian_vehicle_not_found",
"signature": {
"dateTime": "April 3, 2023 2:26 PM",
"message": "Certified by Verifik.co"
}
}
409 Conflict Some parameters are missing. {
"code": "MissingParameter",
"message": "missing plate\n"
}