Amazon Search Scraper
Pricing
from $1.50 / 1,000 results
Amazon Search Scraper
Scrape Amazon search result pages by keyword and marketplace. Returns ASIN, title, price, rating, reviews count, and result position.
Pricing
from $1.50 / 1,000 results
Rating
0.0
(0)
Developer
Farhan Ali
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
3 days ago
Last modified
Categories
Share
Amazon Search Scraper creates a structured dataset of product records collected from Amazon search result pages. Each dataset item can include the ASIN, title, product URL, price and list price, average rating, review count, image URL, sponsored flag, delivery text, and result position. Query the source with searchQuery and a marketplace domain, control the volume with maxPages and maxProducts, and retrieve records through the Apify Dataset API or export them as JSON, CSV, Excel, XML, or another supported format.
Dataset at a glance
| Property | Value |
|---|---|
| Source | Amazon marketplaces (amazon.de, amazon.co.uk, amazon.in, amazon.fr, amazon.com.au, and others) |
| Record unit | One search-result product |
| Input methods | searchQuery (required) + domain |
| Main identifiers | asin, url |
| Delivery | Apify Dataset and API |
| Export formats | JSON, CSV, Excel, XML, HTML |
| Update model | Fresh records per Actor run |
| Pricing | $1.50 per 1,000 products |
Coverage and available records
The Actor runs an Amazon keyword search on a selected marketplace and collects the products returned on the search results pages. Supported behavior:
- Keyword search —
searchQueryis the required search term. - Marketplace selection —
domainaccepts any Amazon hostname (e.g.amazon.co.uk,amazon.in,amazon.fr), including a fullwww.orhttpsURL. - Pagination —
maxPagescaps the number of search result pages scraped. - Result limit —
maxProductscaps total products (0 = unlimited). - Rate control —
pageDelayMssets the delay between page requests.
Not currently collected: product detail pages, description body, bullet points, reviews, sellers list, and buy-box offers. The Actor records what the search results page displays.
Data dictionary
| Field | Type | Nullable | Description | Example |
|---|---|---|---|---|
asin | string | yes | Amazon Standard Identification Number; recommended deduplication key | B0BHSXFTGH |
title | string | yes | Product title from search results | Fullstar Gemüseschneider und Mandoline... |
url | string | yes | Product detail page URL | https://www.amazon.de/dp/B0BHSXFTGH |
price | string | yes | Current displayed price | 22,99 € |
listPrice | string | yes | List/strikethrough price, when shown | €29.99 |
rating | number | yes | Average star rating | 4.4 |
reviewsCount | integer | yes | Number of customer reviews | 46280 |
imageUrl | string | yes | Thumbnail image URL | https://m.media-amazon.com/images/I/...jpg |
isSponsored | boolean | yes | Whether the listing is sponsored | false |
delivery | string | yes | Delivery information text | FREE delivery |
position | integer | yes | Position on the search results page | 1 |
page | integer | yes | Search results page number | 1 |
searchQuery | string | yes | Search keyword used | kitchen |
domain | string | yes | Marketplace domain scraped | amazon.de |
scrapedAt | string | yes | ISO timestamp when scraped | 2026-06-18T15:41:41.043218 |
Example dataset record
{"asin": "B0BHSXFTGH","title": "Fullstar Gemüseschneider und Mandoline Gemüsehobel - Julienne- und Würfelschneider ...","url": "https://www.amazon.de/Fullstar-Gem%C3%BCseschneider-Mandoline-Gem%C3%BCsehobel-W%C3%BCrfelschneider/dp/B0BHSXFTGH/ref=sr_1_1?...","price": "22,99 €","listPrice": null,"rating": null,"reviewsCount": 46280,"imageUrl": "https://m.media-amazon.com/images/I/81ViXXJKNhL._AC_UY218_.jpg","isSponsored": false,"delivery": "Edelstahl","position": 1,"page": 1,"searchQuery": "kitchen","domain": "amazon.de","scrapedAt": "2026-06-18T15:41:41.043218"}
The record above was produced by a run with searchQuery: "kitchen" and domain: "amazon.de".
Query and input reference
| Input | Type | Required | Default | Accepted values | Description |
|---|---|---|---|---|---|
searchQuery | string | yes | — | keyword | Search keyword, e.g. kitchen, wireless headphones |
domain | string | no | amazon.de | any marketplace hostname | Marketplace to scrape |
maxPages | integer | no | 1 | >= 1 | Maximum search result pages |
maxProducts | integer | no | 0 | 0 = unlimited | Maximum products to collect |
pageDelayMs | integer | no | 1500 | >= 0 | Delay between page requests (ms) |
proxyConfiguration | object | no | {"useApifyProxy": true} | proxy settings | Recommended for Amazon scraping |
Minimal request:
{"searchQuery": "kitchen","domain": "amazon.de"}
Advanced request:
{"searchQuery": "wireless headphones","domain": "amazon.co.uk","maxPages": 5,"maxProducts": 200,"pageDelayMs": 2000,"proxyConfiguration": {"useApifyProxy": true}}
Retrieve the data through the API
- Start the Actor with a JSON input (see above).
- Wait for the run to finish.
- Retrieve items from the run's default dataset.
- Paginate or export the dataset.
Python example:
import jsonimport urllib.requestAPI_TOKEN = "<your Apify API token>"ACTOR_ID = "datascrapers/amazon-scraper"payload = {"searchQuery": "kitchen","domain": "amazon.de","maxPages": 1,}req = urllib.request.Request(f"https://api.apify.com/v2/acts/{ACTOR_ID}/runs?token={API_TOKEN}",data=json.dumps(payload).encode(),headers={"Content-Type": "application/json"},)with urllib.request.urlopen(req) as resp:run = json.loads(resp.read())["data"]dataset_id = run["defaultDatasetId"]with urllib.request.urlopen(f"https://api.apify.com/v2/datasets/{dataset_id}/items?token={API_TOKEN}") as resp:items = json.loads(resp.read())
For other languages, use the generated API tab on the Actor's page.
Data quality and record handling
- Nullable fields —
rating,listPrice, anddeliveryare often absent; treat them as nullable. - Raw price text —
priceis reported exactly as Amazon displays it, including currency symbol and thousand separators; parse it in your pipeline if you need numeric values. - Deduplication —
asinis the stable, recommended unique key;urlalso uniquely identifies a product. - Retries and errors — page requests are retried; a page that fails to load returns the products that were successfully parsed.
- Position tracking —
positionandpagerecord where the product appeared, useful for ranking analysis.
The Actor reflects search results at run time and does not provide historical price history.
Export and pipeline examples
| Destination | Recommended method | Typical use |
|---|---|---|
| PostgreSQL/Supabase | Dataset API or webhook consumer | Product catalog keyed by asin |
| Google Sheets | Apify integration | Review a small search result set |
| S3/cloud storage | Scheduled export or integration | Price-monitoring snapshots |
| BI tools | CSV/JSON export | Ranking and review-count analysis |
Pricing and cost examples
The Actor uses pay-per-event billing. One charge event applies:
apify-default-dataset-item— $1.50 per 1,000 products returned.
| Records | Estimated base cost |
|---|---|
| 1,000 products | $1.50 |
| 10,000 products | $15.00 |
| 100,000 products | $150.00 |
Estimates assume the free-tier rate and no proxy markup; actual cost depends on your Apify plan and selected options.
Limitations and responsible data use
- The Actor collects publicly accessible search-result data only; it does not bypass login or paywalls.
- Results depend on Amazon's current page structure; site changes can require Actor updates.
- Some fields are conditional or nullable (see Data dictionary).
- The Actor does not retain historical snapshots unless you store them yourself.
- You are responsible for complying with Amazon's terms of service and applicable privacy and contractual obligations.
Dataset questions
What does one dataset item represent?
One product returned by an Amazon search on a single marketplace.
Which field should I use as a unique identifier?
asin. url is also unique per product.
Are fields nullable or conditional?
Yes. rating, listPrice, and delivery are frequently absent for some products.
Can I retrieve the records as CSV or JSON?
Yes. The default dataset supports JSON, CSV, Excel, and XML exports, and the Dataset API returns JSON.
How do I paginate large datasets?
Set maxPages and maxProducts to bound the run, or paginate the default dataset via the Dataset API.
What counts as a billable result?
Each product returned to the dataset counts as one apify-default-dataset-item event.
Related datasets from Data Scrapers
- Best Buy Product Scraper — electronics and appliance product records that complement Amazon catalog data.
- HomeDepot Scraper — home-improvement product data with stock levels for cross-retailer price monitoring.
- LinkedIn Company Scraper — company records for joining with product brands.
- Zoopla Scraper — property listings for unrelated UK market datasets.
Data Scrapers support
Need an additional field, record type, or export workflow? Contact Data Scrapers at stardustspotlight@gmail.com. Include a sample source URL, required fields, expected record volume, and preferred delivery format.