Amazon Search Scraper API
Run any Amazon keyword search and get the ranked results page back as structured JSON. Organic and sponsored positions, ASIN, price, and rating per result, across 20 marketplaces, billed only when a search returns data.
curl "https://api.amazonscraperapi.com/api/v1/amazon/search?api_key=YOUR_KEY&query=mechanical+keyboard&domain=com" {
"page": 1,
"products": [
{
"asin": "B08X4...",
"title": "Keychron K2 Wireless Mechanical Keyboard",
"price": 79.99,
"currency": "USD",
"rating": 4.6,
"reviews_count": 8021,
"is_sponsored": false,
"organic_position": 1,
"is_prime": true,
"sales_volume": "2K+ bought in past month"
},
{ "asin": "B09...", "is_sponsored": true, "sponsored_position": 1, ... }
]
} What is Amazon Search Scraper API
The Amazon Search Scraper API is a GET endpoint - /api/v1/amazon/search?api_key=&query=&domain= - that runs a keyword search and returns the ranked results as structured JSON. Each result includes its organic or sponsored position, ASIN, price, currency, rating, and review count. Start free with 1,000 requests a month, then pay as you go $0.90 per 1,000 successful requests, or opt in for cheaper monthly plans at up to $0.50 per 1,000 results.
Scrape Amazon search results as ranked JSON
Each search returns an array of result objects in the order Amazon displays them. Every result carries the fields you need to track rank, price, and demand:
To pull the full listing for any result, pass its ASIN to the Amazon Product Scraper API.
Organic and sponsored, ranked exactly as Amazon shows them
The Amazon Search Scraper API separates organic and sponsored placements so you can measure each independently. Organic listings get a 1-indexed organic_position, sponsored placements get a sponsored_position, and the is_sponsored flag marks which is which. That makes the endpoint a fit for:
- Keyword rank tracking - measure where a given ASIN sits organically for a term over time.
- Ad-coverage analysis - count sponsored slots and see who is buying a keyword.
- Competitor and market research - pull the full first page of results for any term and marketplace.
- ASIN harvesting - collect every ASIN ranking for a category to feed the product endpoint.
Every Amazon marketplace, parsed locale-aware
Set the marketplace with the domain parameter. The Amazon Search Scraper API covers all 20 marketplaces, and prices and ratings on every result are parsed in that marketplace's locale, so a German result priced "1.234,56 EUR" returns 1234.56 and a "4,5 sur 5" rating on amazon.fr returns 4.5.
How the Amazon Search Scraper API works
Pass a query and a marketplace, add optional paging and sort controls, and read JSON back:
- query. The search term, exactly as a shopper would type it.
- domain. Which of the 20 marketplaces to search.
- start_page and pages. Fetch a specific results page, or several in sequence, instead of just the first.
- sort_by. best_match, price_asc, price_desc, avg_customer_review, or newest.
- Residential routing, JSON in ~2 to 3 seconds. Each search exits from a country-matched residential IP; search pages return a touch faster than full product pages.
The complete parameter and response reference is in the search endpoint documentation, and the Python and Node.js SDKs page through results for you.
Pricing: pay per successful search
A search that returns a results page costs credits; a search that gets blocked or returns no usable page costs zero. You are billed per successful search request, so a page with 60 listings is a single charge.
- Free: 1,000 requests per month, no daily cap.
- Pay as you go: $0.90 per 1,000 successful requests.
- Monthly plans: opt in for cheaper monthly plans at up to $0.50 per 1,000 results.
Full detail on the pricing page.