eBay Sold Listings & Seller Intelligence (10 Markets) avatar

eBay Sold Listings & Seller Intelligence (10 Markets)

Pricing

from $1.00 / 1,000 listing item (keyword search)s

Go to Apify Store
eBay Sold Listings & Seller Intelligence (10 Markets)

eBay Sold Listings & Seller Intelligence (10 Markets)

Scrape eBay sold, completed, and active listings with prices, product photos, item details, seller feedback reviews, GMV, sell-through, store, and lead signals across 10 marketplaces.

Pricing

from $1.00 / 1,000 listing item (keyword search)s

Rating

0.0

(0)

Developer

Blynx

Blynx

Maintained by Community

Actor stats

0

Bookmarked

15

Total users

6

Monthly active users

21 hours ago

Last modified

Share

๐Ÿ›’ eBay Sold Listings & Seller Intelligence

Scrape eBay sold prices, active listings, product photos, seller feedback reviews, and full seller intelligence across 10 marketplaces โ€” no browser, captcha-resilient, pay only for what you get.

Perfect for resale comps ยท product research ยท competitor tracking ยท seller lead qualification.

flowchart LR
A["๐Ÿ”Ž Keywords<br/>๐Ÿ‘ค Seller / store / item URLs<br/>๐Ÿ“„ Input dataset"] --> B{"Mode"}
B -->|KEYWORD_SEARCH| C["๐Ÿงพ Listings + prices"]
B -->|SELLER_INTELLIGENCE| D["๐Ÿ“Š Seller intelligence"]
C --> E["๐Ÿ–ผ๏ธ Photos + item details"]
D --> F["โญ Reviews + ๐Ÿ’ฐ GMV + reputation"]

โœจ What you get

๐Ÿงพ Listing search (KEYWORD_SEARCH)

  • Sold, completed, or active eBay listing rows
  • Title, subtitle, listing ID, item URL, keyword, marketplace
  • Price text, numeric price, currency, and sold date when visible
  • Main product photo from the search card
  • Optional item-detail enrichment: seller, listing sold count, extra photo URLs, product rating summary

๐Ÿ“Š Seller intelligence (SELLER_INTELLIGENCE)

  • Username, profile URL, feedback score, positive feedback %
  • ๐Ÿ… Top Rated ยท ๐Ÿฌ Store ยท ๐Ÿ’ผ Business-seller signals
  • Active listing count + listing samples
  • Sold count, average sold price, GMV estimates, sell-through, repeat-buyer signals
  • Recent feedback reviews as separate rows (text, rating, item, buyer, price)
  • Coarse tier label (SOLO โ†’ SIDE_HUSTLE โ†’ GROWING โ†’ POWER_SELLER โ†’ ENTERPRISE โ†’ MEGA) for fast lead scoring

๐ŸŒ Supported marketplaces

InputMarketplaceInputMarketplace
EBAY_USebay.comEBAY_ESebay.es
EBAY_UKebay.co.ukEBAY_CAebay.ca
EBAY_DEebay.deEBAY_AUebay.com.au
EBAY_FRebay.frEBAY_IEebay.ie
EBAY_ITebay.itEBAY_NLebay.nl

๐Ÿš€ Quick start

1๏ธโƒฃ Sold listings with photos (default flow)

{
"mode": "KEYWORD_SEARCH",
"keywords": ["iphone 15 pro max"],
"listingType": "SOLD",
"count": 50,
"daysToScrape": 30,
"ebaySite": "EBAY_US",
"sortOrder": "endedRecently",
"includeProductPhotos": true
}
{
"mode": "KEYWORD_SEARCH",
"keywords": ["sony wh-1000xm5"],
"listingType": "ACTIVE",
"count": 25,
"ebaySite": "EBAY_UK",
"condition": "USED",
"includeProductPhotos": true,
"detailedSearch": true
}

3๏ธโƒฃ Seller intelligence + review rows

{
"mode": "SELLER_INTELLIGENCE",
"profileUrls": [
{ "url": "https://www.ebay.com/usr/musicmagpie" },
{ "url": "https://www.ebay.com/itm/123456789012" }
],
"ebaySite": "EBAY_US",
"includeActiveListings": true,
"includeSoldListings": true,
"includeRecentFeedback": true,
"saveReviewRows": true,
"maxReviewRowsPerSeller": 25
}

๐Ÿ’ก In SELLER_INTELLIGENCE you can paste anything that points at a seller: bare username, /usr/, /fdbk/, /str/ store, ?_ssn= seller-search, or any /itm/ item URL โ€” the actor resolves the real username for you.


๐Ÿ’ป Command line

$apify call trakk/ebay-seller-intelligence --input-file input.json

Minimal input.json:

{
"mode": "KEYWORD_SEARCH",
"keywords": ["iphone 15 pro max"],
"listingType": "SOLD",
"count": 50
}

๐Ÿงญ Input guide

FieldUse it forDefault
modeKEYWORD_SEARCH (listings) or SELLER_INTELLIGENCE (sellers)KEYWORD_SEARCH
keywordsProduct names, models, SKUs, brands, phrases["iphone 15 pro max"]
listingTypeSOLD, ACTIVE, or COMPLETEDSOLD
countMax listing rows per keyword50
ebaySiteMarketplace to searchEBAY_US
daysToScrapeSold/completed date window (โ‰ค 90 days)30
minPrice / maxPricePrice bounds (marketplace currency)โ€”
conditionNew, used, refurbished, open box, partsANY
sortOrderResult orderingendedRecently
includeProductPhotosAdd product photos to rowstrue
detailedSearchOpen item pages for extra photos, seller, sold count, ratingsfalse
profileUrls / usernamesSeller/store/item inputs (seller mode)โ€”
includeRecentFeedbackAdd recent feedback reviewstrue
saveReviewRowsSave reviews as separate rowstrue
maxReviewRowsPerSellerCap review rows per seller25
sampleListingsActive/sold sample size on seller rows10
maxConcurrencyParallel seller workflows3

Post-fetch seller filters (all optional, off by default): minFeedbackScore, minPositivePercent, countries, mustBeTopRated, mustHaveStore, mustBeBusinessSeller, minMonthlyGmvEstimate, minActiveListings, minSoldLast90Days, tiers.


๐Ÿ“ค Output views

flowchart TD
A["๐Ÿ—‚๏ธ Default dataset"] --> B["๐Ÿงพ Listings"]
A --> C["๐Ÿ’ฒ Pricing research"]
A --> D["๐Ÿ–ผ๏ธ Photos"]
A --> E["๐Ÿ“Š Seller intelligence"]
A --> F["โญ Reviews"]
A --> G["๐Ÿฉบ Diagnostics"]
ViewWhat's in it
ListingsClean listing rows with prices and photos
Pricing researchPrice-first table for sold comps
PhotosProduct images + gallery URLs
Seller intelligenceReputation, velocity, GMV
ReviewsOne row per seller feedback review
DiagnosticsClear notes for empty searches / invalid input

๐Ÿงพ Example listing row

{
"recordType": "listing",
"keyword": "iphone 15 pro max",
"ebaySite": "EBAY_US",
"listingType": "SOLD",
"listingId": "123456789012",
"title": "Apple iPhone 15 Pro Max 256GB",
"priceText": "$899.99",
"priceAmount": 899.99,
"currency": "USD",
"soldDate": "Jun 12, 2026",
"imageUrl": "https://i.ebayimg.com/images/g/example/s-l500.webp",
"itemUrl": "https://www.ebay.com/itm/123456789012"
}

๐Ÿ“Š Example seller row

{
"recordType": "seller",
"username": "musicmagpie",
"ebaySite": "EBAY_UK",
"feedbackScore": 1234567,
"positiveFeedbackPercent": 98.8,
"isTopRated": true,
"hasStore": true,
"activeListingsCount": 250000,
"soldLast90DaysCount": 10000,
"monthlyGmvEstimate": 750000,
"sellThroughRate": 0.42,
"tier": "MEGA",
"currency": "GBP"
}

โญ Example review row

{
"recordType": "review",
"username": "musicmagpie",
"rating": "positive",
"reviewText": "Fast delivery and item exactly as described.",
"itemTitle": "Apple iPhone 15 Pro Max 256GB",
"priceText": "$899.99",
"buyer": "private buyer",
"verifiedPurchase": true,
"itemUrl": "https://www.ebay.com/itm/123456789012"
}

๐Ÿ’ธ Pricing (pay-per-event)

Recommended setup โ€” you pay only for the depth you actually receive:

EventFires whenSuggested price
listing_itemOne listing row from keyword search$1.00 / 1,000
seller_profileBase seller intelligence row$5.00 / 1,000
seller_active_summaryActive-listings add-on succeeded$3.00 / 1,000
seller_sold_intelligenceSold velocity + GMV add-on succeeded$7.00 / 1,000

Failed sub-fetches, diagnostics, review rows, and filtered records are not charged. Listings are the fast, affordable workflow; seller intelligence is a premium enrichment layer.


๐ŸŽฏ Use cases

  • ๐Ÿ“ˆ Sold-price research & resale comps
  • ๐Ÿ”ฌ Product demand validation
  • ๐Ÿ“Š Marketplace pricing dashboards
  • ๐Ÿ•ต๏ธ Competitor seller tracking
  • ๐ŸŽฏ Power-seller lead lists
  • ๐Ÿค Wholesale, sourcing & partnership research
  • ๐Ÿ“ฆ Active inventory monitoring
  • โญ Review & reputation analysis

โ“ FAQ

Can I get product photos? Yes โ€” keep includeProductPhotos on. Turn on detailedSearch for gallery URLs from item pages.

Can I get review text? Yes, in seller-intelligence mode. Feedback reviews are saved as separate review rows when saveReviewRows is on.

Can I get product review ratings? Sometimes โ€” if eBay exposes a rating/review summary on the item page, detailedSearch captures it.

How far back does sold data go? eBay's public sold/completed history is roughly 90 days.

Why do I see a diagnostic row? The run finished, but eBay returned no usable rows for that keyword, filter set, or seller input. The run stays green โ€” you get a readable note instead of a failure.


๐Ÿท๏ธ Keywords

eBay sold listings ยท eBay scraper ยท sold prices ยท price research ยท product photos ยท seller reviews ยท seller intelligence ยท GMV estimate ยท resale comps ยท marketplace analytics ยท seller leads ยท eBay completed listings