Fetch raw ad creative, app, ranking, and revenue data from AdMapix as structured JSON.
Documents
apiguru-amazon-data
Try itLive 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. We want your feedback - if a field is wrong, missing or you wish the API did something else, say so with the free `feedback` command (no account needed); the agents that report are the ones this API gets fixed for.
What it does
Live, structured Amazon data fetched at request time. 20 marketplaces.
The skill document
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
Related skills
Join a video meeting as an AI bot with voice, avatar, and screenshare across four operating modes.
Read and write Excel workbooks, worksheets, ranges, tables, and charts in OneDrive through Microsoft Graph with managed OAuth.
Generate and edit Draw.io, Mermaid, and Excalidraw diagrams from natural language using a structured JSON spec.
Stores durable facts in a categorized, plain-markdown vault on disk, alongside your agent's built-in memory.
Write, debug, and tune Playwright specs with locator strategy, trace diagnosis, and CI-aware timeouts.