Amazon extraction API
Amazon Scraper - Extract Products, Search & Lists
Extract public Amazon product details, search results, storefronts, and shared lists into clean Markdown or schema-versioned JSON.
Live playground
Try Amazon extraction.
Use an example or paste your own public URL. The playground calls the same cacheable GET API your agent will use.
Supported inputs
Built for normal public URLs.
- Supported Amazon country stores
- Canonical product URLs and ASINs
- Search feeds and exact public shared lists
- Markdown and schema-versioned JSON
Clear boundaries
Know exactly what to expect.
- No list discovery, category crawling, pagination, carts, accounts, reviews, or personalized offers
- CAPTCHAs and verification pages are not bypassed
- Price and availability vary by market and can change after a cached response
One GET request
Add Amazon data to your agent.
No SDK and no account are required during the public preview. Choose JSON for typed entities or Markdown for direct model context.
Read the quickstartcurl --get 'https://extractor.sh/api/extract' \
--data-urlencode 'url=https://www.amazon.de/echo-dot-2022/dp/B09B8X9RGM' \
--data-urlencode 'format=json'const params = new URLSearchParams({
url: 'https://www.amazon.de/echo-dot-2022/dp/B09B8X9RGM',
format: 'json',
});
const response = await fetch(
`https://extractor.sh/api/extract?${params}`,
);
const data = await response.json();from json import load
from urllib.parse import urlencode
from urllib.request import urlopen
params = urlencode({
"url": "https://www.amazon.de/echo-dot-2022/dp/B09B8X9RGM",
"format": "json",
})
with urlopen(f"https://extractor.sh/api/extract?{params}") as response:
data = load(response)Common questions
Amazon scraper FAQ
What Amazon URLs can extractor.sh process?
Product details, Product search, Public lists. Use an ordinary public URL from the platform.
What does the Amazon extraction API return?
One normalized product or a capped product feed. Choose raw Markdown or schema-versioned JSON for every request.
What are the limits of Amazon extraction?
No list discovery, category crawling, pagination, carts, accounts, reviews, or personalized offers. CAPTCHAs and verification pages are not bypassed. Price and availability vary by market and can change after a cached response.
More sources