Back to templates
E-commerceextract
4.6
1.8k uses
eBay Listings Scraper
Extract auction and buy-it-now listings from eBay search results with prices, shipping, seller info, and time remaining
Target URL
https://www.ebay.com/sch/i.html?_nkw=vintage+watchesVisit SiteSteps
1
Go to eBay search results
navigate
2
Extract listings
extract
| Field | Selector | Transform |
|---|---|---|
| title | .s-item__title span | text |
| price | .s-item__price | text |
| shipping | .s-item__shipping | text |
| condition | .SECONDARY_INFO | text |
| url | .s-item__link | url |
| image | .s-item__image-img | url |
Output Schema
| Field | Type |
|---|---|
| title | string |
| price | string |
| shipping | string |
| condition | string |
| url | string |
| image | string |
Example Output
| title | price | shipping | condition | url | image |
|---|---|---|---|---|---|
| Vintage Omega Seamaster Automatic 1960s | $1,299.00 | Free shipping | Pre-Owned | /itm/295712834 | https://i.ebayimg.com/images/g/example1.jpg |
| Rolex Datejust 36mm 1978 Gold/Steel | $4,850.00 | +$14.95 shipping | Pre-Owned | /itm/295819234 | https://i.ebayimg.com/images/g/example2.jpg |
| Seiko 5 Sports Automatic SRPD73K1 | $185.50 | Free shipping | New with tags | /itm/295623412 | https://i.ebayimg.com/images/g/example3.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-ebay-listings",
"url": "https://www.ebay.com/sch/i.html?_nkw=vintage+watches"
}'