v1

latestOpenAPI 3.0.32026-07-13353343.5 KB
Vehicles

Fuel Tank (US Only)

Description

Returns the status of the fuel remaining in the vehicle’s gas tank. Note: The fuel tank API is only available for vehicles sold in the United States.

Permission

read_fuel

Response Body

NameTypeDescription
rangenumberThe estimated remaining distance the car can travel (in kilometers by default or in miles using the sc-unit-system).
percentRemainingnumberThe remaining level of fuel in the tank (in percent).
amountRemainingnumberThe amount of fuel in the tank (in liters by default or in gallons (U.S.) using the sc-unit-system).
get/vehicles/{vehicle_id}/fuel

Response

return fuel tank reading

rangenumber float

The estimated remaining distance the car can travel (in kilometers by default or in miles using the sc-unit-system).

percentRemainingnumber float

The remaining level of fuel in the tank (in percent).

amountRemainingnumber float

The amount of fuel in the tank (in liters by default or in gallons (U.S.) using the sc-unit-system).

Example response

{
  "range": 320.4,
  "percentRemaining": 0.75,
  "amountRemaining": 19.5
}