Skip to content

lulzasaur9192/marketplace-scrapers-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Marketplace Scraper Examples: OfferUp, Reverb, StubHub

Python Node.js Apify

Code examples for scraping OfferUp, Reverb, StubHub, and other marketplaces using Apify actors.

Build marketplace price comparison tools, reseller tools, or used goods arbitrage bots with these ready-to-run examples.

Apify Actors

Actor Marketplace Link
OfferUp Scraper OfferUp apify.com/lulzasaur/offerup-scraper
Reverb Scraper Reverb apify.com/lulzasaur/reverb-scraper
StubHub Scraper StubHub apify.com/lulzasaur/stubhub-scraper
Swappa Scraper Swappa apify.com/lulzasaur/swappa-scraper
Craigslist Scraper Craigslist apify.com/lulzasaur/craigslist-scraper
Poshmark Scraper Poshmark apify.com/lulzasaur/poshmark-scraper

Get Started

  1. Create an Apify account (free tier available)
  2. Copy your API token from Settings → Integrations

Installation

Python

pip install apify-client

Node.js

npm install apify-client

Examples

File Language Description
offerup_search.py Python Search OfferUp listings by keyword and location
reverb_gear_finder.py Python Find used music gear on Reverb
price_comparison.py Python Compare prices across OfferUp, Reverb, and more
apify_client_setup.js Node.js Configure the Apify client for all scrapers

Quickstart

from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")

run = client.actor("lulzasaur/offerup-scraper").call(
    run_input={"query": "iphone 15", "location": "Seattle, WA", "maxItems": 10}
)

for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(f"{item['title']} — ${item['price']}")

Use Cases

  • OfferUp scraper — monitor local deals, track flips
  • Reverb scraper — find cheap music gear, guitar deals
  • StubHub scraper — track ticket prices for events
  • Marketplace price comparison — compare the same item across platforms
  • Used goods arbitrage — buy low on one marketplace, sell high on another
  • Reseller tools — automated sourcing and price monitoring
  • Price scraping API — build your own price aggregator

Keywords

OfferUp scraper, Reverb scraper, StubHub scraper, marketplace price comparison, used goods arbitrage, reseller tools, price scraping API, Apify actors

License

MIT

About

OfferUp, Reverb, StubHub scraper examples — price comparison, arbitrage tools, Apify actors. Python & Node.js.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors