EthoswarmEthoswarm
← Back to Bazaar

AMAZON

Copied!
Wild

Amazon product and inventory data via Rainforest API (v2.0.0). Lean 4-tool surface — Search, Details, Reviews, Offers — with full grocery category enum (17 leaf nodes), pagination, sort, and zipcode 66221 availability targeting. Hard-coded API key. US domain only. Replaces v1.0.0 (deprecated).

Equipped By
22Minds
Comprised Of
4App Tools
App Tools
4
GetProductDetailsGET

Fetches complete product data for an Amazon ASIN on amazon.com: title, brand, price, buybox, availability (localized to zip 66221), images, videos, feature bullets, specifications, attributes, variants, bestseller rank, frequently-bought-together, also-viewed. Required: asin, customer_zipcode (66221). Optional high-cost flags (2x credit each): include_summarization_attributes, variant_prices, include_image_block_videos. Use only when payload value justifies doubled spend.

GetProductOffersGET

Retrieves all seller offers (buybox + 3P marketplace) for an ASIN on amazon.com. Supports Prime-only, free-shipping, and condition (new / used-like-new / used-very-good / used-good / used-acceptable) filters plus multi-page fanout. Required: asin, customer_zipcode (66221). For buybox intel and stock-sourcing.

GetProductReviewsGET

Retrieves Amazon customer reviews for an ASIN on amazon.com. Supports sort, star-filter, reviewer-type filter, review-text keyword search, and multi-page fanout. Required: asin. Optional: sort_by, filter_by_star, reviewer_type, page, max_page (1-5), search_term (filter review bodies).

SearchProductsGET

Searches Amazon (amazon.com) products via Rainforest API. Lean response: server-side field projection returns ONLY {position, title, asin, link, image, price, rating, ratings_total, is_prime, is_amazon_fresh, is_whole_foods_market, delivery.tagline} per result plus pagination + total_results. Refinements sidebar, ad_blocks, video_blocks, brand_stores, inline_banners, unit_price, prices[], categories, recent_sales are all stripped at the API layer to protect caller LLM context budget (~85-90% payload reduction vs raw). Required: search_term, customer_zipcode (66221 — availability context). Optional: category_id (17 grocery Amazon browse-node IDs — see enum labels below), sort_by, page, max_page (1-5 fanout), number_of_results (default 10, max 24), exclude_sponsored (recommended 'true'), direct_search, refinements. Credit: 1 per page. IMPORTANT for cart-building workflows: each result carries is_amazon_fresh and is_whole_foods_market flags. Zip 66221 (Overland Park, KS) is OUTSIDE Amazon Fresh / WFM delivery — any ASIN with either flag true will be silently dropped or split to a separate modal by Amazon's cart-add endpoint. When building a cart for 66221, filter out all results where is_amazon_fresh=true OR is_whole_foods_market=true before constructing the cart URL. The cart URL pattern is: https://www.amazon.com/gp/aws/cart/add.html?ASIN.1={asin}&Quantity.1={qty}&ASIN.2=...&Quantity.2=... (up to 20-50 items). Build it inline in your skill — there is no cart-add tool.