🇧🇴Bolivia

Service to consult Bolivian vehicles using their license plate.

Bolivian Vehicle Information

GET - https://api.verifik.co/v2/bo/vehicle

The Vehicle Information Service in Bolivia allows you to retrieve precise details about a vehicle registered in the country. By providing the license plate number, the service returns information such as the vehicle's policy number, brand, class (e.g., work motorcycle), registration location, service type (e.g., private), and model.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

plate

String

True

Vehicle license plate to be consulted.

ABC1234

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/bo/vehicle>',
  params: {plate: 'ABC1234'},
    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

{
    "data": {
        "Policy": "180680443",
        "brand": "BAJAJ",
        "clase": "MOTOCICLETA - TRABAJO",
        "declaratory": "GRAL. SAAVEDRA",
        "plate": "1234ZYL",
        "service": "PARTICULAR",
        "type": "BOXER 150"
    },
    "signature": {
        "dateTime": "July 26, 2024 4:55 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "ZX35K"
}

Last updated