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"
  },
  "speed": {
    "value": 123,
    "unit": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "heading": {
    "value": 123,
    "unit": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "stateOfCharge": {
    "value": 123,
    "unit": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "chargingState": {
    "timestamp": "2023-11-07T05:31:56Z",
    "chargePortDoorOpen": true
  },
  "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,
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "metadata": {
    "lastSeenAt": "2023-11-07T05:31:56Z",
    "consentId": "<string>",
    "accountId": "<string>",
    "registrationDate": "2023-12-25"
  },
  "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"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.volteras.com/llms.txt

Use this file to discover all available pages before exploring further.

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
speed
VehicleSpeed · object
required
heading
VehicleHeading · 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