Skip to main content
GET
/
v1
/
vehicles
/
{vehicle_id}
/
telemetry
Get Vehicle Telemetry
curl --request GET \
  --url https://api.volteras.com/v1/vehicles/{vehicle_id}/telemetry \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "odometer": {
    "value": 123,
    "unit": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "location": {
    "latitude": 123,
    "longitude": 123,
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "elevation": {
    "value": 123,
    "unit": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "stateOfCharge": {
    "value": 123,
    "unit": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "chargingState": {
    "chargingState": "STARTING",
    "timestamp": "2023-11-07T05:31:56Z",
    "chargePortDoorOpen": true,
    "chargePortLatch": "ENGAGED"
  },
  "range": {
    "value": 123,
    "unit": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "tirePressure": {
    "frontRightTire": 123,
    "frontLeftTire": 123,
    "rearRightTire": 123,
    "rearLeftTire": 123,
    "unit": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "security": {
    "locked": true,
    "frontRightDoor": "OPEN",
    "frontLeftDoor": "OPEN",
    "rearRightDoor": "OPEN",
    "rearLeftDoor": "OPEN",
    "frontRightWindow": "OPEN",
    "frontLeftWindow": "OPEN",
    "rearLeftWindow": "OPEN",
    "rearRightWindow": "OPEN",
    "frontTrunk": "OPEN",
    "rearTrunk": "OPEN",
    "sunRoof": "OPEN",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "metadata": {
    "lastSeenAt": "2023-11-07T05:31:56Z",
    "consentId": "<string>",
    "accountId": "<string>"
  },
  "realRange": {
    "value": 123,
    "unit": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "maxStateOfCharge": {
    "value": 123,
    "timestamp": "2023-11-07T05:31:56Z",
    "unit": "percent"
  },
  "chargeRemainingTime": {
    "value": 123,
    "timestamp": "2023-11-07T05:31:56Z",
    "unit": "minutes"
  },
  "chargePowerLevel": {
    "value": 123,
    "timestamp": "2023-11-07T05:31:56Z",
    "unit": "kw"
  },
  "chargeCurrentLimit": {
    "value": 123,
    "timestamp": "2023-11-07T05:31:56Z",
    "unit": "amps"
  },
  "energyRemaining": {
    "value": 123,
    "unit": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "minStateOfCharge": {
    "value": 123,
    "timestamp": "2023-11-07T05:31:56Z",
    "unit": "percent"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

vehicle_id
string
required

Unique internal identifier for the vehicle.

Response

200 - application/json

Successful Response

id
string
required
odometer
VehicleOdometer · object
required
location
VehicleTelemetryLocation · object
required
elevation
VehicleElevation · object
required
stateOfCharge
VehicleStateOfCharge · object
required
chargingState
VehicleChargingState · object
required
range
VehicleRange · object
required
tirePressure
VehicleTirePressure · object
required
security
VehicleSecurity · object
required
metadata
VehicleMetaData · object
required
realRange
VehicleRealRange · object
required
maxStateOfCharge
VehicleChargeMaxStateOfCharge · object
required
chargeRemainingTime
VehicleChargeRemainingTime · object
required
chargePowerLevel
VehicleChargePowerLevel · object
required
chargeCurrentLimit
VehicleChargeCurrentLimit · object
required
energyRemaining
VehicleEnergyRemainingKwh · object
required
minStateOfCharge
VehicleChargeMinStateOfCharge · object
required