action autodealerdata_get_history2_vehicle_history_get { label: "Premium. Simple Vehicle History Report" description: "Premium. Provides a simple report detailing a vechicle's sales history at dealerships. Data includes the name of the dealership, dates it was for sale,\nprice, new/used condition, mileage, dealership state, and dealership zip code. Data availability goes back to early 2016. \n\nIf your use case involves checking if a vehicle has appeared on the open market on or after a given date see \nthe /vehicleSeen endpoint." provider: autodealerdata method: GET path: "/vehicleHistory" encoding: json input: { type: "object" properties: { jwt: { type: "string" } vin: { type: "string" } } required: ["jwt", "vin"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "object" required: ["data", "vin"] properties: { data: { type: "array" items: { type: "object" required: ["dealerName", "firstSeen", "lastSeen", "price", "new", "miles", "state", "zip"] properties: { dealerName: { type: "string" } firstSeen: { type: "string" format: "date" } lastSeen: { type: "string" format: "date" } miles: { type: "integer" } new: { type: "boolean" } price: { type: "number" } state: { type: "string" } zip: { type: "integer" } } } } vin: { type: "string" } } } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }