Find products (ranked)
find_productsAnswer 'best under $N' and 'which has the most ' directly: filter a category by maxPriceUsd and/or brand, then rank by a field — 'priceUsd' (default, cheapest first), 'releaseDate', or any of the category's spec keys (set descending:true for biggest-first, e.g. sortBy:'battery_mah' descending:true). Returns provenanced product records; products missing the sort value sort last. Never infers a spec it has not verified.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| brand | No | Only products from this brand. | |
| sortBy | No | Field to rank by: 'priceUsd' (default), 'releaseDate', or a spec key from the category. | |
| category | Yes | Product category slug from list_product_categories. | |
| descending | No | Rank largest/newest first (default false = smallest/cheapest first). | |
| maxPriceUsd | No | Only products at or below this USD price. |