Services
API Reference
- Back Office
- Listings
- Historical Photos
- Vehicles
- Taxes & Fees
- Consumers
- Credit
- Services
- Invoices
- Companies
- Locations
- Webhooks
- Inspection
Vehicles
Retrieve a Vehicle Spec
GET
/
vehiclespecs
/
{id}
Copy
Ask AI
curl --request GET \
--url https://commerce.driv.ly/api/vehiclespecs/{id}
Copy
Ask AI
{
"data": {
"id": "vs_4jf8x9jv5c0b",
"make": "Toyota",
"year": 2022,
"trim": "SE",
"model": "Camry",
"engine": "2.5L 4-cylinder",
"squishVin": "4T1BF1FK5H",
"bodyStyle": "Sedan",
"drivetrain": "FWD",
"transmission": "Automatic",
"exteriorColors": [
"Black",
"Silver"
],
"interiorColors": [
"Black",
"Gray"
]
},
"success": true
}
Path Parameters
Vehicle Spec is uniquely identified by id
Query Parameters
The number of levels of related objects to include in the response
Response
200
application/json
Vehicle Spec Found
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://commerce.driv.ly/api/vehiclespecs/{id}
Copy
Ask AI
{
"data": {
"id": "vs_4jf8x9jv5c0b",
"make": "Toyota",
"year": 2022,
"trim": "SE",
"model": "Camry",
"engine": "2.5L 4-cylinder",
"squishVin": "4T1BF1FK5H",
"bodyStyle": "Sedan",
"drivetrain": "FWD",
"transmission": "Automatic",
"exteriorColors": [
"Black",
"Silver"
],
"interiorColors": [
"Black",
"Gray"
]
},
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.