GET
/
v2.0
/
vehicles
/
{id}
curl "https://api.smartcar.com/v2.0/vehicles/{id}" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
    "id": "36ab27d0-fd9d-4455-823a-ce30af709ffc",
    "make": "TESLA",
    "model": "Model S",
    "year": "2014"
}
The Vehicles API v2.0 will be deprecated by Q3 of 2026. We recommend migrating to the latest version as soon as possible to ensure continued support and access to new features.

Permission

read_vehicle_info

Request

Path
id
string
required
The vehicle ID of the vehicle you are making a request to.
curl "https://api.smartcar.com/v2.0/vehicles/{id}" \
-H "Authorization: Bearer {token}" \
-X "GET"

Response

id
string
The ID for the vehicle.
make
string
The manufacturer of the vehicle.
model
string
The model of the vehicle.
year
integer
The model year.
{
    "id": "36ab27d0-fd9d-4455-823a-ce30af709ffc",
    "make": "TESLA",
    "model": "Model S",
    "year": "2014"
}