Skip to main content

πŸ‡§πŸ‡· Brazil - Vehicle information

Vehicle information lookup​

Endpoint​

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

Given a Brazilian license plate, Verifik returns structured vehicle data in one request so you can tie a real-world asset to verified, normalized attributes. It is aimed at fleet and mobility onboarding, insurance quoting and claims, secured finance and collateral review, and marketplace or dealer checks where the plate is the primary identifier.

The Verifik API returns a normalized vehicle record for that plate, including plate, brand, model, model year and year of manufacture, chassis (VIN), engine, color, body type, fuel type, transmission, doors, manufacturer or plant, FIPE codes where they apply to the vehicle, and irregularity or restriction indicators when they exist for that registration. Use it to confirm the unit in front of you matches the official line before you continue.

Headers​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
platestringYesLicense plate to query (letters and digits; casing is normalized). Example: ABC1D23.

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/br/vehicle',
params: {
plate: 'ABC1D23',
},
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": "Hatch",
"brand": "Example Brand",
"chassis": "9BWZZZ377VT004251",
"color": "PRATA",
"country": "Brasil",
"doors": "4",
"engine": "1.0",
"factory": "Example Plant",
"fuelType": "Flex",
"irregularitiesCount": "0",
"irregularityCode": "",
"manufacturer": "Example Manufacturer",
"model": "Example Model",
"modelYear": "2022",
"plate": "ABC1D23",
"transmission": "Manual",
"vehicle": "AutomΓ³vel",
"version": "1.0 Flex",
"yearOfManufacture": "2022"
},
"signature": {
"dateTime": "April 20, 2026 12:00 PM",
"message": "Certified by Verifik.co"
}
}

Notes​

  • Only plate is required on the query string.
  • Some accounts also enable an extended data sheet by plate product; use the URL from your AppFeature catalog when that feature is active.