Skip to main content
GET
/
vehiclespecs
/
{id}
Retrieve a Vehicle Spec
curl --request GET \
  --url https://commerce.driv.ly/api/vehiclespecs/{id}
{
  "data": {
    "id": "<string>",
    "model": "<string>",
    "make": "<string>",
    "year": 123,
    "engine": "<string>",
    "drivetrain": "<string>",
    "bodyStyle": "<string>",
    "transmission": "<string>",
    "squishVin": "<string>",
    "trim": "<string>",
    "exteriorColors": [
      "<string>"
    ],
    "interiorColors": [
      "<string>"
    ]
  },
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.driv.ly/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string
required

Vehicle Spec is uniquely identified by id

Query Parameters

depth
integer

The number of levels of related objects to include in the response

Response

Vehicle Spec Found

data
Vehicle Spec · object
Example:
{
"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
boolean