GET
/
vehicles
/
{id}
/
{make}
/
charge
/
ammeter
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/charge/ammeter" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
  "amperage": 30
}

This endpoint is currently available for tesla

Permission

read_charge

curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/charge/ammeter" \
-H "Authorization: Bearer {token}" \
-X "GET"

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.

Response

amperage
number

The rate that the vehicle is charging at (in amperes).

{
  "amperage": 30
}

Was this page helpful?