GET
/
vehicles
/
{vehicleId}
/
signals
/
{signalCode}
GET signal
curl --request GET \
  --url https://vehicle.api.smartcar.com/v3/vehicles/{vehicleId}/signals/{signalCode}
{
  "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>"
  }
}

Path Parameters

vehicleId
string
required

The unique identifier for the vehicle.

signalCode
string
required

The unique identifier for the signal.

Response

200
application/json

Individual signal details

The response is of type object.