Explore and analyze Amazon marketplace data through the KeyAPI REST API using live official docs. Use for product search, category browsing, product details, best sellers, deals, seller intelligence, influencer storefronts, reviews, offers, and ASIN/GTIN conversion.
文档
apiguru-amazon-data
试用Live Amazon marketplace data from Apiguru (a paid third-party API, 3 free calls a day) - product details, prices, reviews, keyword search, best-sellers, deals, offers and stock, seller profiles, across 20 Amazon marketplaces. Use only when the user asks for Amazon data by ASIN, Amazon URL, product, seller or keyword, or for Amazon price/stock/review monitoring. Not for other stores or general shopping advice. Never pays on its own; ask before any billable call.
它能做什么
Live Amazon marketplace data from Apiguru (a paid third-party API, 3 free calls a day) - product details, prices, reviews, keyword search, best-sellers, deals, offers and stock, seller profiles, across 20 Amazon marketplaces. Use only when the user asks for Amazon data by ASIN, Amazon URL, product, seller or keyword, or for Amazon price/stock/review monitoring. Not for other stores or general shopping advice. Never pays on its own; ask before any billable call.
技能文档
Apiguru Amazon Data
Live, structured Amazon data fetched at request time. 20 marketplaces.
Getting access
There are two ways in, and you do not need to sign up for either.
Keyless (default). Call the agent gateway with no credentials:
curl 'https://agent.apiguru.app/agent/v1/v2/product-details?asin=B09DJLW458&geo=US'
You get 3 free calls per 24h. After that the endpoint answers 402 with a
PAYMENT-REQUIRED header. Any x402-capable HTTP client settles that in USDC on
Base mainnet and retries automatically — no account, no subscription.
Two response headers tell you where you stand before you hit a 402:
X-Free-Probes-Remaining and X-Price-Next-Call.
https://agent.apiguru.app/.well-known/x402 lists every endpoint with prices
and schemas, free and unmetered — check it before planning a paid job.
Keyed. If an APIGURU_API_KEY is available in the environment, use it
instead and calls bill to that account:
curl -H "X-API-KEY: $APIGURU_API_KEY" \
'https://dash.apiguru.app/api/v1/v2/product-details?asin=B09DJLW458&geo=US'
scripts/probe.py picks the right mode automatically. Prefer it over raw curl.
Choosing an endpoint
| Need | Endpoint |
|---|---|
| Everything about one ASIN | /v2/product-details |
| Many ASINs (≤20) | /product?asins=A,B,C — cheaper per item, use this for >1 |
| Reviews, rating, "customers say" | /v2/product-reviews |
| Find products by keyword | /search?query=... |
| Offers, buy box, live stock (≤10) | /stock?asins=... |
| Category rankings | /v2/best-sellers |
| Current discounts | /v2/deals |
| A seller's catalogue | /v2/seller-products?seller_id=... |
| Seller reputation | /v2/seller-reviews?seller_id=... |
| Seller profiles (≤10) | /seller-profile?seller_ids=... |
Full parameter reference: references/endpoints.md.
Rules that prevent wasted calls and wasted money
- ASINs must be 10 UPPERCASE alphanumeric characters (
^[A-Z0-9]{10}$). Uppercase the input before sending; a lowercase ASIN is a400. - Never loop a single-item endpoint over a list. Use
/productfor ASINs and/seller-profilefor seller IDs. Ten ASINs through/productcosts $0.08 and one round trip; ten through/v2/product-detailscosts $0.10 and ten round trips. - Set
geodeliberately. It defaults toUS. A product that exists onamazon.demay genuinely 404 onUS. Seereferences/endpoints.mdfor the 20 supported codes. check_inventory=trueon/stockis slow and bills more. Only set it when you actually need the stock number, not just the offers.- Read
successin the body, not just the HTTP status — some responses are200withsuccess: false.
Error handling — which failures cost money
This is the part worth getting right:
404— the item genuinely is not on that marketplace. This is billed. Retrying will not help. Try a differentgeo, or accept the result and move on.503— an Apiguru-side fetch failure. Not billed. Retry with backoff; this is the expected way transient upstream blocks surface.429— rate limited. Back off, then retry.400— your input was wrong (bad ASIN format, unknown geo, missing required parameter). Not billed. Fix the input; do not retry unchanged.402— payment required. Either settle it with an x402 client or supply an API key.
So: retry 503 and 429; never retry 400 or 404.
Quick start
# one product
python scripts/probe.py product-details --asin B09DJLW458 --geo US
# many at once (preferred for lists)
python scripts/probe.py product --asins B09DJLW458,B0BSHF7WHW --geo US
# keyword search
python scripts/probe.py search --query "wireless earbuds" --geo UK
# what does anything cost, and how many free probes are left?
python scripts/probe.py capabilities
MCP alternative
If the environment supports MCP, the same data is available as tools without any HTTP handling:
{ "mcpServers": { "apiguru": { "command": "apiguru-mcp" } } }
Install with pip install apiguru-mcp. Prefer this when available — the tools
validate ASINs and geos before spending a request.
Reference files
references/endpoints.md— every endpoint, parameter, and marketplace codereferences/errors-and-costs.md— pricing, billing rules, retry strategy
相关技能
Search Amazon, read full product detail by ASIN, and list every seller offer on an ASIN with the buy-box winner. Clean normalized JSON with price, rating, review count, availability, shipping and sellers. 3 endpoints, all 1 credit, 22 marketplaces.
Collect Amazon Global Product data and return results
Collect Amazon Product data and return results
Collect Amazon Product List data and return results
Amazon search and category listing scraper: extract product listings from any Amazon search results page, keyword search URL, or category browse page and return per-item cards (asin, title, url, image, price, listPrice, stars, reviewCount, badges, isAmazonChoice, isBestSeller, isSponsored, delivery,