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>"
}
}
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>"
}
}
The unique identifier for the vehicle.
The unique identifier for the signal.
Individual signal details
The response is of type object
.
Was this page helpful?