get_shop_products
Query verified products and catalog summaries for selected tracked shops.
Use get_shop_products after the user has selected one or more tracked shops and wants products, pricing, stock or catalog comparisons.
Inputs
| Field | Type | Required | Notes |
|---|---|---|---|
storeIds | string[] | Yes | One to five tracked shops |
limit | number | Yes | 1–20 products per shop |
stock | enum | Yes | all, in_stock, out_of_stock |
sort | enum | Yes | newest, bestseller, price_low, price_high |
minPrice | number | No | Non-negative |
maxPrice | number | No | Non-negative |
productType | string | No | Product-category filter, up to 100 characters |
Example call
{
"storeIds": ["store_one"],
"limit": 10,
"stock": "in_stock",
"sort": "newest",
"minPrice": 20,
"maxPrice": 100,
"productType": "supplements"
}Good prompt
Show the 10 newest in-stock supplements from this tracked shop,
priced between $20 and $100.Use discover_products instead when the user wants to search across the global indexed catalog rather than selected tracked shops.
Credits
The maximum reservation is limit × number of shops. The final charge reflects products actually returned.