Skip to main content

πŸ‡§πŸ‡΄ Bolivia - Vehicle Information

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.

Endpoint​

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

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescriptionExample
platestringYesVehicle 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': 'Bearer <tu_token>'
}
};

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

Features​

  • Vehicle Information Retrieval: Get comprehensive vehicle details from Bolivian vehicle registry
  • License Plate Validation: Verify vehicle license plates registered in Bolivia
  • Policy Information: Retrieve vehicle insurance policy numbers
  • Vehicle Classification: Get detailed vehicle class information (e.g., work motorcycle)
  • Registration Location: Access vehicle registration location details
  • Service Type: Determine if vehicle is private, commercial, or other service type
  • Brand and Model: Get vehicle manufacturer and model information
  • Multiple Programming Languages: Support for JavaScript, Python, PHP, and Swift
  • Real-time Data: Access current and up-to-date vehicle information
  • Comprehensive Error Handling: Detailed error responses for various scenarios