🇧🇷Brazil

Service to query Brazilian companies using the CNPJ (Cadastro Nacional da Pessoa Jurídica).

Brazilian Company Information

GET - https://api.verifik.co/v2/br/company

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.

Implementation

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required?
Description
Example

plate

String

True

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

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

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"
  }
}

Last updated