Retrieve the complete online listing history for a vehicle identified by its VIN. History listings are sorted by listing date, showing every price change, dealer transfer, and market exposure period.
| Property | Value |
|---|---|
| Tool name | get_car_history |
| Markets | US, Canada |
| Required | VIN (17 characters) |
| API endpoint | GET /v2/history/car/{vin} |
| Default sort | Descending by listing date / last seen date |
| Parameter | Type | Default | Required | Description |
|---|---|---|---|---|
vin | string | — | Yes | 17-character Vehicle Identification Number |
fields | string | — | No | Comma-separated list of specific fields to return (reduces response size) |
page | int | 1 | No | Page number for pagination |
sort_order | string | "asc" | No | "asc" or "desc" |
Each historical listing record includes:
| Analysis | How to Extract |
|---|---|
| Price trajectory | Compare price across listing records chronologically |
| Time on market | Review dom (days on market) per listing period |
| Dealer transfers | Track which dealers have listed the vehicle and when |
| Listing ID changes | Each price or mileage update creates a new listing ID |
| Active vs. historical | Returns all listing records for a VIN — both active and expired |
get_car_history(
vin="1HGCV1F34JA123456"
)
get_car_history(
vin="1HGCV1F34JA123456",
sort_order="asc"
)
get_car_history(
vin="1HGCV1F34JA123456",
fields="id,price,miles,dom,first_seen_at,last_seen_at,dealer.name"
)
get_car_history(
vin="1HGCV1F34JA123456",
page=2
)
For comprehensive vehicle valuation research:
decode_vin_neovin(vin=...) to confirm vehicle identityget_car_history(vin=...) to see how the price has changed over timepredict_price_with_comparables(vin=..., miles=...) for today's valuationVIN Decode
Full reference for the decode_vin_neovin tool — decode any 17-character VIN to get comprehensive vehicle specifications, MSRP, installed options, features, and more.
Sold Summary
Comprehensive sold vehicle analytics with advanced filtering, ranking, and grouping — covering up to 5 years of historical US sales data via the MarketCheck MCP Server.