Skip to main content
GET
/
battery_health
Get Battery Health
curl --request GET \
  --url https://api.tessie.com/battery_health \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "vin": "<string>",
      "plate": "<string>",
      "odometer": 123,
      "max_range": 123,
      "max_ideal_range": 123,
      "capacity": 123,
      "original_capacity": 123,
      "degradation_percent": 123,
      "health_percent": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

from
number

The start of the timeframe. Unix timestamp in seconds.

to
number

The end of the timeframe. Unix timestamp in seconds.

distance_format
enum<string>
default:mi

Whether to return data in miles or kilometers.

Available options:
mi,
km
only_active
boolean
default:false

Whether to include only active vehicles in the response.

Example:

true

Response

200 - application/json

Success

results
object[]