Skip to main content
The E-Commerce category lets your agent query live product catalogs — searching by keyword, fetching full item details, pulling best-seller and category rankings, and more. With ~34 tools across major marketplace providers, it’s straightforward to build agents that compare products, monitor pricing, or research purchase options without scraping storefronts directly. All tools follow the standard discover → describe → execute pattern, and parameters vary by marketplace, so always check describe_tool before executing.

Common operations

OperationWhat it returns
search-item-list_v1Ranked list of products matching a keyword or filter query
get-item-detail_v1 / get-product-detail_v1Full product record — title, price, specs, images, and reviews
get-best-sellers_v1Best-seller rankings for a given category or marketplace segment
get-category-products_v1All products listed under a specific category node

Example

The three-step flow for searching wireless earbuds:
find_tools("search products for wireless earbuds")
describe_tool("AmazonScraper/search-item-list_v1")
execute_tool("AmazonScraper/search-item-list_v1", { query: "wireless earbuds", country: "US" })
Available marketplaces, supported filter fields, and response schemas differ by provider. Before executing any e-commerce tool, call describe_tool("Provider/Operation") to confirm the exact required and optional parameters, understand what marketplace it targets, and review the per-call credit cost.