Chevrolet and Cadillac
Voltage
When the vehicle is plugged in, returns the charging voltage measured by the vehicle. When the vehicle is not plugged in, this endpoint results in a vehicle state error.
GET
/
vehicles
/
{id}
/
{make}
/
charge
/
voltmeter
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/charge/voltmeter" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
"voltage": 240
}
This endpoint is currently available for cadillac
and chevrolet
.
Permission
read_charge
Request
id
string
requiredThe vehicle ID of the vehicle you are making a request to.
make
string
requiredThe make of the vehicle you are making a request to.
Response
voltage
number
The potential difference measured by the vehicle in volts (V).
Was this page helpful?
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/charge/voltmeter" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
"voltage": 240
}