npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

marketplace-price-tracker

v1.0.1

Published

JavaScript client for Marketplace Price Tracker API — search OfferUp, Reverb, TCGPlayer, StubHub, Swappa, Poshmark, Craigslist and more via RapidAPI

Downloads

91

Readme

Marketplace Price Tracker

JavaScript client for the Marketplace Price Tracker API on RapidAPI.

Search and compare prices across 14+ online marketplaces from a single API: OfferUp, Reverb, TCGPlayer, StubHub, Swappa, Poshmark, Craigslist, Grailed, Bonanza, and more.

Install

npm install marketplace-price-tracker

Quick Start

const MarketplacePriceTracker = require('marketplace-price-tracker');

const tracker = new MarketplacePriceTracker('YOUR_RAPIDAPI_KEY');

// Search TCGPlayer for Pokemon cards
const cards = await tracker.tcgplayer('charizard vmax', { limit: 10 });

// Search Reverb for guitars
const guitars = await tracker.reverb('fender stratocaster', { limit: 20 });

// Search OfferUp locally
const deals = await tracker.offerup('macbook pro', { location: 'new york' });

// Search any marketplace generically
const results = await tracker.search('swappa', { query: 'iphone 15', limit: 10 });

// Compare prices across marketplaces
for (const market of ['offerup', 'swappa', 'craigslist']) {
  const res = await tracker.search(market, { query: 'ps5' });
  console.log(`${market}: ${res.results?.length} listings`);
}

Supported Marketplaces

| Marketplace | Method | Best For | |-------------|--------|----------| | TCGPlayer | tcgplayer(query) | Trading cards (Pokemon, MTG, Yu-Gi-Oh) | | Reverb | reverb(query) | Music gear (guitars, amps, pedals) | | OfferUp | offerup(query) | Local marketplace deals | | StubHub | stubhub(query) | Event tickets | | Swappa | swappa(query) | Used electronics | | Poshmark | poshmark(query) | Fashion & accessories | | Craigslist | craigslist(city, category, query) | Local classifieds | | Grailed | grailed(query) | Designer/streetwear | | Bonanza | bonanza(query) | General marketplace | | Goodreads | search('goodreads', ...) | Books | | AbeBooks | search('abebooks', ...) | Rare/used books | | ThriftBooks | search('thriftbooks', ...) | Used books | | Houzz | search('houzz', ...) | Home design | | Redfin | search('redfin', ...) | Real estate |

Additional Endpoints

homeServices(service, location)

Get cost estimates for home services (plumbing, electrical, etc.).

estateSales(location, options?)

Find estate sales near a location.

storage(location, options?)

Compare self-storage facility pricing.

Use Cases

  • Arbitrage: Find price discrepancies across marketplaces
  • Price Monitoring: Track product prices over time
  • Market Research: Compare pricing across platforms
  • Deal Alerts: Build notification systems for price drops
  • E-commerce Tools: Power price comparison features

Get Your API Key

  1. Go to Marketplace Price API on RapidAPI
  2. Subscribe (free tier: 200 requests/month)
  3. Copy your API key from the dashboard

License

MIT