eBay Listings Scraper avatar

eBay Listings Scraper

Pricing

from $1.99 / 1,000 results

Go to Apify Store
eBay Listings Scraper

eBay Listings Scraper

eBay Listings scraper to extract publicly available product listings, prices, seller details, item conditions, categories, images, and listing metadata from eBay 🛒📊 Perfect for price monitoring, competitor analysis, e-commerce research, and market intelligence.

Pricing

from $1.99 / 1,000 results

Rating

0.0

(0)

Developer

Scrapers Hub

Scrapers Hub

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

An Apify actor that scrapes eBay search listings and returns structured data (price, seller feedback, shipping, condition, dates, thumbnails).

Tech stack

  • requests — primary HTTP engine.
  • curl_cffi — fallback engine. When eBay blocks plain requests (403 / 429 / captcha interstitial), the request is retried with a real Chrome TLS fingerprint via curl_cffi.
  • parsel — HTML parsing with CSS selectors.
  • Apify SDK — input, proxy configuration, dataset output, logging.

Input

FieldTypeDefaultDescription
searchQueriesarray of strings— (required)Keywords to search.
listingTypeall | auction | buy_it_nowallSelling format filter.
sortbest_match | newly_listed | ending_soonest | price_low | price_highbest_matchResult ordering.
maxListingsPerSearchinteger40Listing cap per query.
maxSearchPagesinteger4Max result pages per query.
maxRequestRetriesinteger5Retries per request before giving up.
proxyConfigurationobjectApify ProxyProxy settings.

Example

{
"listingType": "all",
"maxListingsPerSearch": 40,
"maxRequestRetries": 5,
"maxSearchPages": 4,
"searchQueries": ["vintage camera"],
"sort": "newly_listed"
}

Output

Each dataset item:

{
"itemId": "236774018661",
"title": "KMZ Konvas 35mm Cinema Camera 1952 USSR ...",
"soldPrice": 1600,
"soldPriceString": "$1,600.00",
"soldDate": "Jun 24, 2026",
"condition": "",
"listingType": "Buy It Now",
"bidsCount": null,
"shippingCost": "+$150.00 delivery",
"sellerName": "vintagephotostore_ua",
"sellerFeedbackPercent": "99.5%",
"sellerFeedbackCount": "1.2K",
"thumbnail": "https://i.ebayimg.com/images/g/0XMAAOSwZ4BmZ-j2/s-l500.webp",
"url": "https://www.ebay.com/itm/236774018661",
"scrapedAt": "2026-06-24T07:57:48.249Z"
}

Run locally

pip install -r requirements.txt
apify run --input='{"searchQueries":["vintage camera"],"sort":"newly_listed"}'