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.
| 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 |
- Create an Apify account (free tier available)
- Copy your API token from Settings → Integrations
pip install apify-clientnpm install apify-client| 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 |
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']}")- 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
OfferUp scraper, Reverb scraper, StubHub scraper, marketplace price comparison, used goods arbitrage, reseller tools, price scraping API, Apify actors
MIT