Ebay Seller Scraper avatar

Ebay Seller Scraper

Pricing

Pay per usage

Go to Apify Store
Ebay Seller Scraper

Ebay Seller Scraper

πŸ“ˆ eBay Seller Scraper pulls seller listings and key details from eBay fast & reliably. πŸ› οΈ Perfect for market research, competitor tracking, and pricing insights. πŸ“Š Extracts structured data to save time and boost smarter decisions. βœ…

Pricing

Pay per usage

Rating

0.0

(0)

Developer

ScrapAPI

ScrapAPI

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

19 days ago

Last modified

Share

eBay Seller Scraper (Actor)

Scrapes eBay seller pages and extracts:

  • url
  • name
  • feedback_score
  • listings (array of { title, price })

Behaviour (parity with local scripts)

  • Page fetch uses requests with the same URL, query params, and headers as main.py in this repo (run on Apify via a thread pool so the actor stays async).
  • Parsing uses the same extract_seller_data_from_html logic as scraper.py (embedded in src/main.py).

Input

  • urls: bulk list of eBay seller URLs
  • proxyConfiguration: Apify proxy UI (prefill no proxy). The actor always tries direct first, then automatic datacenter β†’ residential fallback when blocked.

Output

The Actor produces a dataset where each item matches this structure:

{
"url": "https://www.ebay.co.uk/usr/USERNAME",
"name": "USERNAME",
"feedback_score": "100%",
"listings": [
{ "title": "Some item", "price": "Β£10.00" }
]
}