GET
/
vehicles
/
{vehicleId}
GET vehicle
curl --request GET \
  --url https://vehicle.api.smartcar.com/v3/vehicles/{vehicleId} \
  --header 'Authorization: <authorization>'
{
  "id": "<string>",
  "type": "vehicle",
  "attributes": {
    "make": "<string>",
    "model": "<string>",
    "year": 123
  },
  "links": {
    "self": "<string>"
  }
}

Headers

Authorization
string
required

Bearer access token for authentication

Path Parameters

vehicleId
string
required

Response

200
application/json

List of data associated with the vehicle

The response is of type object.