eBay Sold Listings Scraper avatar

eBay Sold Listings Scraper

Pricing

Pay per usage

Go to Apify Store
eBay Sold Listings Scraper

eBay Sold Listings Scraper

Scrape eBay sold & completed listings as clean JSON: title, real sold price, sold date, condition, image, and URL. Sold-item history is not available in eBay's free APIs. Bulk, no API key.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Jaime Martinez

Jaime Martinez

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 hours ago

Last modified

Share

Get real eBay transaction prices — not asking prices. This Actor scrapes eBay sold & completed listings for any search query and returns them as clean, structured JSON.

Sold-item price history is not available in eBay's free Finding or Browse APIs, so scraping the completed-listings view is the only way to get this data at scale.

What it does

Give it a search term (e.g. nintendo switch oled) and it returns the matching sold listings with:

  • title — the listing title
  • price — the actual sold price (numeric)
  • currency$, £, , …
  • soldDate — when it sold
  • condition — new / used / etc.
  • itemUrl — link to the listing
  • imageUrl — thumbnail

Why sold listings?

Active listings tell you what sellers hope to get. Sold listings tell you what buyers actually paid — the number that matters for:

  • Resellers & flippers pricing inventory
  • Price-comparison & arbitrage tools
  • Market research on real demand and price trends
  • Collectors valuing items with no fixed market price

Input

FieldTypeDescription
searchQuerystringWhat to search eBay for (required)
maxResultsintegerMax listings to return (default 50)
soldOnlybooleanSold & completed only (default on). Off = include active listings
proxyConfigurationobjectProxy settings — Apify Proxy recommended

Example input

{
"searchQuery": "vintage omega seamaster",
"maxResults": 100,
"soldOnly": true
}

Output

Each item is one sold listing:

{
"title": "OMEGA Seamaster Automatic Men's Watch",
"price": 842.00,
"currency": "$",
"soldDate": "Jun 28, 2026",
"condition": "Pre-owned",
"itemUrl": "https://www.ebay.com/itm/123456789012",
"imageUrl": "https://i.ebayimg.com/images/g/abc/s-l500.jpg"
}

Notes

  • Use Apify Proxy (default) so requests rotate across IPs for reliable results at volume.
  • eBay changes its page layout periodically; this Actor is actively maintained.