Vehicle Endpoints
VIN
Returns the vehicle’s manufacturer identifier.
GET
/v2.0/vehicles/{id}/vin
Permission
read_vin
Request
Path
idrequired
string
The vehicle id of the vehicle you are making a request to.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/vin" \
-H "Authorization: Bearer {token}" \
-X "GET"
Response
vin
string
The manufacturer unique identifier.
{
"vin": "5YJSA1CN5DFP00101"
}
curl "https://api.smartcar.com/v2.0/vehicles/{id}/vin" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
"vin": "5YJSA1CN5DFP00101"
}