GET
/
{vin}
/
consumption_since_charge
Get Consumption
curl --request GET \
  --url https://api.tessie.com/{vin}/consumption_since_charge \
  --header 'Authorization: Bearer <token>'
{
  "last_charge_at": 1675940795,
  "distance_driven": 10.4,
  "battery_percent_used": 10,
  "battery_percent_used_by_driving": 4,
  "rated_range_used": 34.57,
  "rated_range_used_by_driving": 16.75,
  "ideal_range_used": 34.57,
  "ideal_range_used_by_driving": 16.75,
  "energy_used": 7.56,
  "energy_used_by_driving": 3.66
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

vin
string
required

The associated VIN.

Response

200 - application/json

Success

The response is of type object.