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

Response

List of data associated with the vehicle

id
string

The unique identifier for the vehicle.

type
enum<string>
Available options:
vehicle
attributes
object