Skip to main content
GET
/
vehicles
/
{vin}
Retrieve a Vehicle
curl --request GET \
  --url https://commerce.driv.ly/api/vehicles/{vin}
{
  "data": {
    "vin": "<string>",
    "year": 123,
    "make": "<string>",
    "transmission": "<string>",
    "engine": "<string>",
    "drivetrain": "<string>",
    "model": "<string>",
    "bodyStyle": "<string>",
    "seatCount": 1,
    "doorCount": 1,
    "interiorColor": "<string>",
    "exteriorColor": "<string>",
    "trim": "<string>",
    "spec": "<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

vin
string
required

Vehicle is uniquely identified by vin

Query Parameters

depth
integer

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

Response

Vehicle Found

data
Vehicle · object
Example:
{
"vin": "1C4HJXEN5MW592818",
"year": 2021,
"make": "Jeep",
"trim": "Sport",
"spec": "vs_4jf8x9jv5c0b",
"model": "Wrangler",
"engine": "3.6L V6",
"seatCount": 5,
"doorCount": 4,
"bodyStyle": "SUV",
"drivetrain": "4WD",
"transmission": "Automatic",
"interiorColor": "Black",
"exteriorColor": "Red"
}
success
boolean