get_coles_products
Search for products at Coles by query and store ID. Retrieve specific product results with a customizable limit for efficient browsing.
Instructions
Search for products at Coles.
Args:
query: The product search query.
store_id: The Coles store ID to search in.
limit: Maximum number of products to return.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
query | Yes | ||
store_id | No | 0584 |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
},
"store_id": {
"default": "0584",
"title": "Store Id",
"type": "string"
}
},
"required": [
"query"
],
"title": "get_coles_productsArguments",
"type": "object"
}