Ebay Seller Scraper avatar

Ebay Seller Scraper

Pricing

from $4.99 / 1,000 results

Go to Apify Store
Ebay Seller Scraper

Ebay Seller Scraper

πŸ” eBay Seller Scraper extracts seller profiles, ratings, feedback, listings, prices & categories at scale. πŸ“Š Export to CSV/JSON for analytics. πŸš€ Perfect for competitor research, price monitoring & market insights. ⚑ Fast, reliable, and easy to integrate.

Pricing

from $4.99 / 1,000 results

Rating

0.0

(0)

Developer

API Empire

API Empire

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

18 hours 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" }
]
}