GET
/
vehicles
/
{vehicleId}
/
signals
/
{signalCode}
GET signal
curl --request GET \
  --url https://vehicle.api.smartcar.com/v3/vehicles/{vehicleId}/signals/{signalCode} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "type": "signal",
  "attributes": {
    "code": "chargeVoltage",
    "name": "Voltage",
    "group": "Charge",
    "status": {
      "value": "SUCCESS"
    },
    "body": {
      "unit": "volts",
      "value": 85
    }
  },
  "meta": {
    "retrievedAt": 1696156800,
    "oemUpdatedAt": 1696156799
  },
  "links": {
    "self": "<string>",
    "values": "<string>",
    "vehicle": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

vehicleId
string
required

The unique identifier for the vehicle.

signalCode
string
required

The unique identifier for the signal.

Response

Individual signal details

id
string

The unique human readable identifier for the signal.

type
enum<string>
Available options:
signal
attributes
object
Example:
{
"code": "chargeVoltage",
"name": "Voltage",
"group": "Charge",
"status": { "value": "SUCCESS" },
"body": { "unit": "volts", "value": 85 }
}
meta
object
Example:
{
"retrievedAt": 1696156800,
"oemUpdatedAt": 1696156799
}