web_data_amazon_product_search
Retrieve structured Amazon product search results using keywords and domain URLs, providing reliable data access through cache lookup instead of direct scraping.
Instructions
Quickly read structured amazon product search data. Requires a valid search keyword and amazon domain URL. This can be a cache lookup, so it can be more reliable than scraping
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | ||
pages_to_search | No | 1 | |
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"type": "string"
},
"pages_to_search": {
"default": "1",
"type": "string"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"keyword",
"url"
],
"type": "object"
}