Market Value API

Retrieve accurate market value data including trade-in, private party, and fair purchase prices for vehicles based on VIN or Year/Make/Model. Additional endpoints are available for listing years (/market-value/years), makes (/market-value/makes), and models (/market-value/models).
GET
Rate Limit: 10 RPS

Authentication

All API requests require an API key to be included in the x-api-key header.

Endpoint

GET /market-value

Parameters

NameTypeRequired
vinstringOptional
yearstringOptional
makestringOptional
modelstringOptional

Code Examples

Sample Response

JSON Response
{
  "data": {
    "make": "Cadillac",
    "year": "2019",
    "model": "Escalade ESV",
    "valuations": [
      {
        "style": "Luxury Sport Utility 4D",
        "trade_in": "$23,500",
        "fair_purchase": "$29,000",
        "private_party": "$27,100"
      }
    ]
  },
  "status": "success"
}

Options Endpoints