cURL
curl --request GET \ --url https://vehicle.api.smartcar.com/v3/vehicles/{vehicleId} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "vehicle123", "type": "vehicle", "attributes": { "make": "Toyota", "model": "Camry", "year": 2020, "powertrainType": "ICE", "mode": "live" }, "links": { "self": "/vehicles/vehicle123" } } }
Get Vehicle by ID.
The Authorization header must be provided with a valid bearer token. Example: Authorization: Bearer {token}
Authorization: Bearer {token}
The unique identifier for the vehicle.
Vehicle details
Show child attributes
Was this page helpful?