get_best_sellers
Retrieve top-selling art supplies by category or overall, showing quantity sold and revenue data for specific time periods to identify popular products.
Instructions
Get top-selling products by category or overall, with quantity sold and revenue generated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Optional: filter by category | |
period | Yes | Time period: week, month, quarter, year |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Optional: filter by category",
"type": "string"
},
"period": {
"description": "Time period: week, month, quarter, year",
"type": "string"
}
},
"required": [
"period"
],
"type": "object"
}