get_best_deals
Find products on sale and discount opportunities across supermarkets to help with budget shopping and savings.
Instructions
Find the best deals and discounts currently available in supermarkets.
This tool helps you discover:
Products on sale
Best price-to-value items
Popular deals
Discount opportunities
Great for budget shopping and finding savings across all stores.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Product category or type to find deals for (e.g., "lácteos", "cereales", "bebidas") | |
maxResults | No | Number of deals per supermarket (default: 10) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Product category or type to find deals for (e.g., \"lácteos\", \"cereales\", \"bebidas\")",
"type": "string"
},
"maxResults": {
"default": 10,
"description": "Number of deals per supermarket (default: 10)",
"maximum": 30,
"minimum": 1,
"type": "number"
}
},
"required": [
"category"
],
"type": "object"
}