search_products
Find individual products matching a query. Use for a specific item or category; supports price and rating filters.
Parameters8
| query | string | required | |
| max_results | integer | optional | |
| sort | string | optional | |
| min_price | any | optional | |
| max_price | any | optional | |
| min_rating | any | optional | |
| exclude_sponsored | boolean | optional | |
| amazon_domain | string | optional |
Raw schema
{
"type": "object",
"properties": {
"query": {
"title": "Query",
"type": "string"
},
"max_results": {
"default": 5,
"title": "Max Results",
"type": "integer"
},
"sort": {
"default": "best_match",
"title": "Sort",
"type": "string"
},
"min_price": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Min Price"
},
"max_price": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Max Price"
},
"min_rating": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Min Rating"
},
"exclude_sponsored": {
"default": true,
"title": "Exclude Sponsored",
"type": "boolean"
},
"amazon_domain": {
"default": "amazon.com",
"title": "Amazon Domain",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_productsArguments"
}