Skip to main content

Brazil

Endpoint​

https://api.verifik.co/v2/br/vehicle

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.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Query Parameters​

NameTypeRequired?DescriptionExample
plateStringTruePlate to consult, without spaces or points.ABC0123

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/br/vehicle',
params: {plate: 'ITU7764'},
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": {
"bodyType": "Sedan",
"brand": "FIAT",
"chassis": "9BD197134D3048111",
"color": "VERMELHA",
"country": "Brasil",
"denatranWarning": "",
"doors": "4",
"engine": "1.4",
"factory": "Betim - MG",
"fipeCodes": [
"001381-1"
],
"fuelType": "Flexivel Alcool/Gasolina/GNV",
"irregularitiesCount": 0,
"irregularityCode": "",
"manufacturer": "FIAT",
"model": "Grand Siena TetraFuel 1.4 Flex GNV 4P",
"modelYear": "2013",
"plate": "ITU7764",
"transmission": "Manual",
"vehicle": "Grand Siena",
"version": "TetraFuel",
"yearOfManufacture": "2012"
},
"signature": {
"dateTime": "October 10, 2025 6:57 PM",
"message": "Certified by Verifik.co"
},
"id": "7ZNJG"
}

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