woolworths_get_specials
Retrieve current special offers and deals from Woolworths Australia, with optional filtering by product category to find relevant discounts.
Instructions
Get current specials and deals from Woolworths
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Optional category filter (e.g., 'fruit-veg', 'meat-seafood') | |
| pageSize | No | Number of results to return (default: 20) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Optional category filter (e.g., 'fruit-veg', 'meat-seafood')",
"type": "string"
},
"pageSize": {
"default": 20,
"description": "Number of results to return (default: 20)",
"type": "number"
}
},
"type": "object"
}