Back to templates
E-commerceextract
4.8
3.2k uses
Amazon Product Scraper
Extract product listings from Amazon search results including title, price, rating, review count, and product URL
Target URL
https://www.amazon.com/s?k=wireless+headphonesVisit SiteSteps
1
Go to Amazon search results
navigate
2
Wait for product grid to load
wait
3
Extract product listings
extract
| Field | Selector | Transform |
|---|---|---|
| title | h2 a span | text |
| price | .a-price .a-offscreen | text |
| rating | .a-icon-alt | text |
| reviewCount | .a-size-base.s-underline-text | text |
| url | h2 a | url |
| image | .s-image | url |
4
Scroll to load more products
scroll
5
Check for next page
condition
Condition:
.s-pagination-nextGo to next page
.s-pagination-nextOutput Schema
| Field | Type |
|---|---|
| title | string |
| price | string |
| rating | string |
| reviewCount | string |
| url | string |
| image | string |
Example Output
| title | price | rating | reviewCount | url | image |
|---|---|---|---|---|---|
| Sony WH-1000XM5 Wireless Headphones | $278.00 | 4.6 out of 5 stars | 12,847 | /dp/B09XS7JWHH | https://m.media-amazon.com/images/I/51aYfkJTb-L.jpg |
| Apple AirPods Pro (2nd Generation) | $189.99 | 4.7 out of 5 stars | 98,231 | /dp/B0BDHWDR12 | https://m.media-amazon.com/images/I/61SUj2a-hEL.jpg |
| Bose QuietComfort Ultra Headphones | $349.00 | 4.5 out of 5 stars | 8,439 | /dp/B0CCZ26B5V | https://m.media-amazon.com/images/I/51QcNxJMt8L.jpg |
API Endpoint
curl -X POST https://api.scraper.bot/v1/flows \
-H "Authorization: Bearer scr_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"templateId": "tmpl-amazon-products",
"url": "https://www.amazon.com/s?k=wireless+headphones"
}'