action autodealerdata_get_listings_by_dealer_listings_by_date_get { label: "Listings by Dealer ID and Date" description: "See /listings2 endpoint for more flexible listing search.\nReturns a dealer's listings over the given timespan by dealer ID. The ID can be found by calling the /getDealers endpoint. \nMaximum time interval between startDate and endDate is 45 days.\nListing keys are: vin, askPrice, msrp, isNew, firstSeen, lastSeen, modelName, brandName.\nResults are paginated in chunks of up to 20 vehicles. Prices are in the dealer's local currency (generally USD)." provider: autodealerdata method: GET path: "/listingsByDate" encoding: json input: { type: "object" properties: { dealerID: { type: "integer" } endDate: { type: "string" format: "date" } jwt: { type: "string" } newCars: { type: "boolean" } page: { type: "integer" } startDate: { type: "string" format: "date" } } required: ["dealerID", "endDate", "jwt", "startDate"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "object" required: ["listings", "maxPages", "page"] properties: { listings: { type: "array" items: { type: "object" required: ["vin", "askPrice", "msrp", "isNew", "firstSeen", "lastSeen", "modelName", "brandName", "year", "dealerID"] properties: { askPrice: { type: "number" } brandName: { type: "string" } color: { type: "string" } dealerID: { type: "integer" } firstSeen: { type: "string" format: "date" } interiorColor: { type: "string" } isNew: { type: "boolean" } lastSeen: { type: "string" format: "date" } mileage: { type: "number" } modelName: { type: "string" } msrp: { type: "number" } vin: { type: "string" } vinDecode: { type: "object" } year: { type: "number" } } } } maxPages: { type: "integer" } page: { type: "integer" } } } endDate: { type: "string" format: "date" } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } startDate: { type: "string" format: "date" } } } }