Vehicle Intelligence
Retrieve pricing history, sales data, market intelligence, and analytics for specific vehicles using VIN
curl -X GET "https://www.auto.dev/api/vin/string/intelligence"
{
"salesHistory": {
"vin": "string",
"salesCycles": [
{
"startDate": "string",
"endDate": "string"
}
],
"daysOnSite": 0,
"cycles": [
[
"string"
]
]
},
"priceHistory": {
"vin": "string",
"recentPriceDrop": true,
"priceChanges": [
{
"price": 0,
"delta": null,
"date": "string"
}
],
"history": [
[
0
]
],
"currentCycleDelta": 0,
"currentCycleChanges": [
{
"price": 0,
"delta": null,
"date": "string"
}
]
},
"listimate": {
"year": 0,
"vehicleCount": 0,
"trim": "string",
"targetPrice": 0,
"priceLimitLow": 0,
"priceLimitHigh": 0,
"model": "string",
"mileage": 0,
"make": "string",
"fairPriceLow": 0,
"fairPriceHigh": 0
}
}