We just shipped the Amazon API. Eleven endpoints under `/v1/amazon/*` give you live product search, full product details with all variations and images, customer reviews, third-party seller offers, category listings, deals, best-sellers, seller and influencer storefronts, and the full Amazon category tree. Every call hits Amazon in real time across whatever regional store you pick — `US`, `GB`, `DE`, `CA`, `AU`, `IN`, `JP`, `FR`, `IT`, `ES`, and more. Most endpoints are $0.01 per call; the two heavy ones (full product and paginated offers) are $0.02.
What's new
- 11 endpoints covering search, product details, reviews, offers, deals, best-sellers, sellers, categories
- Live data from Amazon.com and 10+ regional stores (US, GB, DE, CA, AU, IN, JP, FR, IT, ES, …)
- Search with sort (RELEVANCE, LOWEST_PRICE, HIGHEST_PRICE, REVIEWS, NEWEST, BEST_SELLERS) + Prime, condition, and deals filters
- Full product data: title, price, stock, rating, description, A+ content, videos, all variations, up to 10 photos
- Paginated reviews with star-rating + verified-purchase + images/video filters
- 3rd-party seller offers with buy-box detection (up to 100 offers per product)
- Deals feed with price-range, discount-range, deal-type, category, and min-rating filters
- Best-sellers, hot-new-releases, and highly-rated lists per category
- Seller profiles + seller reviews + influencer storefronts
- Redis-cached per endpoint (offers 15 min, search 30 min, product 6 h, categories 24 h)
- Most endpoints $0.01/call — heavy calls $0.02
Endpoints in this release
What you get back
The search endpoint returns 16 products per page with ASIN, title, price, original price, currency, star rating, review count, product URL, thumbnail photo, minimum offer price, is-best-seller / is-amazon-choice / is-prime / climate-pledge-friendly flags, sales volume (e.g. `4K+ bought in past month`), delivery estimate, and whether the product has variations. The product-details endpoint layers in the full description, A+ content, all images and videos, variation grid, specifications, and Q&A. The reviews and offers endpoints paginate separately for scale.
Use it for price tracking, product research, review mining, and competitive intel
Build a price tracker that alerts on buy-box changes or deal drops. Pull review datasets to train sentiment models or spot product-quality trends. Feed product catalogs for comparison shopping, affiliate sites, or e-commerce analytics. Map who sells what at what price across 3rd-party sellers. The response shape is unchanged JSON from Amazon's own pages — no SDK quota management, no scraping your own proxies.
Quick start
Search for products, then pull the full product for whichever ASIN you care about.
curl -X POST https://api.yepapi.com/v1/amazon/search \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"mechanical keyboard","country":"US","sort_by":"REVIEWS"}'
curl -X POST https://api.yepapi.com/v1/amazon/product \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"asin":"B07ZPKBL9V","country":"US"}'Try the Amazon API
Open the playground and run a live Amazon search — real products, live prices, first call.
Try Amazon API