GET
/
vehicles
/
{id}
/
{make}
/
charge
/
wattmeter
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/charge/wattmeter" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
  "wattage": 3.5
}
This endpoint is currently available for tesla

Permission

read_charge

Request

Path
id
string
required
The vehicle ID of the vehicle you are making a request to.
make
string
required
The make of the vehicle you are making a request to.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/charge/wattmeter" \
-H "Authorization: Bearer {token}" \
-X "GET"

Response

wattage
number
The instant power measured by the vehicle (in kilowatts).
{
  "wattage": 3.5
}