action autodealerdata_get_model_sale_buckets_sale_price_histogram_get { label: "Histogram of sales price of new vehicles by model" description: "Histogram of the sale price of vehicles over the last 45 days for a given model and region. \nPrice buckets are grouped in units of $1000\nThe available brand, model, and region names can be retrieved from their respective endpoints." provider: autodealerdata method: GET path: "/salePriceHistogram" encoding: json input: { type: "object" properties: { brandName: { type: "string" } jwt: { type: "string" } modelName: { type: "string" } regionName: { type: "string" } } required: ["brandName", "jwt", "modelName"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "array" items: { type: "object" required: ["percentOfMarket", "bucket", "modelName"] properties: { bucket: { type: "number" } modelName: { type: "string" } percentOfMarket: { type: "number" } } } } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }