Skip to main content
GET
/
vehicles
/
{vehicleId}
Get vehicle
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"
    }
  }
}

Authorizations

Authorization
string
header
required

The Authorization header must be provided with a valid bearer token. Example: Authorization: Bearer {token}

Path Parameters

vehicleId
string
required

The unique identifier for the vehicle.

Response

Vehicle details

data
object