Skip to main content

Available Tools

ToolEndpointDescription
get_vehiclesGET /api/v1/vehiclesFleet vehicle list
get_vehicleGET /api/v1/vehicles/{id}Single vehicle
get_vehicles_dashboardGET /api/v1/vehicles/dashboardFleet summary

Engine Types

  • combustion — Internal combustion engine
  • electric — Electric
  • hybrid — Hybrid

Usage Examples

"How many electric vehicles does my company have?"
→ get_vehicles({ companyId: "uuid", motorType: "electric" })

"Show me the details of vehicle with plate 1234ABC"
→ get_vehicle({ id: "vehicle-uuid" })

"What is the emissions summary for my fleet?"
→ get_vehicles_dashboard({ companyId: "uuid" })

Common Parameters

get_vehicles

ParameterTypeDescription
companyIdstringCompany ID (required)
motorTypestringEngine type (combustion, electric, hybrid)
pageintegerPage number
limitintegerResults per page