Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/speedometer" \ -H "Authorization: Bearer {token}" \ -X "GET"
speed = vehicle.request( "GET", "{make}/speedometer" )
const speed = await vehicle.request( "GET", "{make}/speedometer" );
SmartcarVehicleRequest request = new SmartcarVehicleRequest.Builder() .method("GET") .path("{make}/speedometer") .build(); VehicleResponse speed = vehicle.request(request);
{ "speed": 84.32 }
Returns the current speed of the vehicle.
tesla
read_speedometer
Was this page helpful?