Whatnot — Listings, Sellers & Shop Inventory avatar

Whatnot — Listings, Sellers & Shop Inventory

Pricing

from $4.00 / 1,000 results

Go to Apify Store
Whatnot — Listings, Sellers & Shop Inventory

Whatnot — Listings, Sellers & Shop Inventory

Scrape whatnot.com — live-shopping marketplace listings and sellers — prices · bids · conditions · card attributes (Set · Grade · Year) · seller ratings · sold counts & full shop inventory. Incremental mode tracks new and changed listings across scheduled runs.

Pricing

from $4.00 / 1,000 results

Rating

0.0

(0)

Developer

Black Falcon Data

Black Falcon Data

Maintained by Community

Actor stats

1

Bookmarked

5

Total users

1

Monthly active users

an hour ago

Last modified

Share

What does Whatnot do?

Whatnot Scraper extracts listings and seller profiles from Whatnot — the leading live-commerce platform for collectibles, trading cards, comics, toys, and sports memorabilia. Unlike general e-commerce scrapers, it walks full seller shop inventories, extracts structured card attributes (Set, Grade, Year, Cert), and tracks price changes across runs so you always know what's new and what's dropped in price.

New to Apify? Sign up free and use the included $5 monthly platform credit to test this actor.

Key features

  • 🏪 Full seller shop inventory — cursor-walk a seller's complete active listings, not just a capped search page. Get every item they have listed with prices, conditions, and attributes.
  • ⭐ Real seller ratings & social proof — extract verified seller rating, review count, follower count, sold count, and Premier Shop / verified badges from each profile.
  • 🃏 Structured listing attributes — Set, Grade, Year, Certification, and Condition extracted as structured key-value pairs from listingAttributeValues[] — ready for filtering and analytics.
  • ♻️ Incremental price tracking — each run tags listings as NEW, UPDATED, or UNCHANGED. Price and bid changes are captured in lastObservedPrice / lastObservedBid — no duplicate re-scraping.
  • 🔍 Deal filters — filter by price range, minimum discount %, minimum quantity, offerable-only, and condition substring (e.g. "new" matches "New", "Like New", "Brand New").
  • 📦 Four scrape modes — keyword search, category browse, seller shop walk, or paste direct listing/seller URLs. Mix modes in one run.
  • 🤖 AI-ready structured output — listings and seller profiles as clean JSON with consistent field names, null-free (with excludeEmptyFields), and description in text/HTML/Markdown format.
  • 🔌 MCP connectors — export listings and seller profiles straight into Notion (or another connected app) via Apify's MCP connectors — a clean run-summary, no glue code. Opt-in via the App connector field; deterministic field-mapping, no AI.

What data can you extract from whatnot.com?

Each result includes Core Whatnot Scraper fields (type, id, url, title, images, videos, listingType, and status, and more) and detail fields when enrichment is enabled (description, descriptionHtml, and descriptionMarkdown). In standard mode, all fields are always present — unavailable data points are returned as null, never omitted. In compact mode, only core fields are returned.

Enable detail enrichment in the input to get richer fields such as full descriptions where the source provides them.

Input

The main inputs are a search keyword and a result limit. Additional filters and options are available in the input schema.

Key parameters:

  • searchKeywords — One or more search terms. Each keyword produces an independent set of results.
  • categories — One or more Whatnot category slugs (e.g. "trading-cards", "sneakers"). Leave empty to search across all categories.
  • sellerUrls — Whatnot seller profile URLs (e.g. https://www.whatnot.com/user/bob). The actor scrapes all active listings in each seller's shop.
  • startUrls — Direct listing URLs or search result pages to scrape. Useful for targeting specific items or saved searches.
  • listingType — Filter by transaction type: all types, auctions only, or fixed-price buy-now listings only. (default: "all")
  • status — Filter by listing status: active listings, currently-live shows, sold listings, or all. (default: "active")
  • condition — Filter by item condition (e.g. "new", "like_new", "good", "fair"). Leave empty for all conditions.
  • priceMin — Minimum listing price in US dollars. Listings below this price are excluded.
  • priceMax — Maximum listing price in US dollars. Listings above this price are excluded.
  • sort — How to sort the results: best match, newest listings, ending soonest (auctions), price low-to-high, or price high-to-low. (default: "best_match")
  • onlyLive — When enabled, return only listings attached to a currently live show. (default: false)
  • minDiscountPercent — Minimum discount percentage (0–100). Only listings with at least this discount are included.
  • ...and 28 more parameters

Input examples

Paste direct URLs — Scrape specific listing or search-result pages by pasting their URLs.

→ One record per listing found at the provided URLs.

{
"startUrls": [
{
"url": "https://www.whatnot.com/search/pokemon%20cards"
}
],
"maxItems": 50
}

Keyword search with deal filters — Search by keyword and keep only buy-now listings within a price range.

→ Listings matching the keyword that pass the price and type filters.

{
"searchKeywords": [
"trading cards"
],
"listingType": "buy_now",
"priceMin": 10,
"priceMax": 200,
"maxItems": 50
}

Seller shop walk — Walk a seller's full active inventory and include their profile.

→ The seller profile plus every active listing in their shop.

{
"sellerUrls": [
"https://www.whatnot.com/user/example"
],
"includeSellerProfiles": true,
"maxListingsPerSeller": 100
}

Compact output for AI agents — Return only core fields for lightweight AI-agent and MCP workflows.

→ Small payload with the most important fields — ideal for piping into LLMs without token overhead.

{
"searchKeywords": [
"trading cards"
],
"compact": true,
"maxItems": 50
}

Output

Each run produces a dataset of structured Whatnot Scraper records. Results can be downloaded as JSON, CSV, or Excel from the Dataset tab in Apify Console.

Example Whatnot Scraper record

{
"type": "listing",
"id": "TGlzdGluZ05vZGU6MTgzNjcyMDY4MA==",
"url": "https://www.whatnot.com/listing/TGlzdGluZ05vZGU6MTgzNjcyMDY4MA==",
"title": "Bulbizarre Pokémon go",
"description": "Pogo",
"descriptionHtml": "<p>Pogo</p>",
"descriptionMarkdown": "Pogo",
"images": [
"https://images.whatnot.com/eyJidWNrZXQiOiAid2hhdG5vdC1pbWFnZXMiLCAia2V5IjogImxpc3RpbmdzLzAtMTRlZmFhZDQtN2ZmNS00NGRhLTg2M2QtOTc5N2Y0NjIzNTc1LTU1N2MzOWNkLTBiYjEtNGQyZi05ZTk1LTAxNTczYjkxNmYyYy5qcGVnIiwgI..."
],
"listingType": "BUY_IT_NOW",
"status": "ACTIVE",
"price": 2,
"buyNowPrice": 2,
"currency": "EUR",
"quantity": 2,
"isOfferable": true,
"category": "Pokémon Cards",
"categoryPath": [
"Pokémon Cards"
],
"hashtags": [
"Pokémon"
],
"productId": "UHJvZHVjdE5vZGU6NDk0NDIzMjU3",
"seller": {
"id": "UHVibGljVXNlck5vZGU6MzE2MTA1NDQ=",
"username": "texdjo",
"url": "https://www.whatnot.com/user/texdjo",
"rating": 4.9,
"reviewCount": 1470,
"isVerified": false,
"isPremierShop": false,
"onVacation": false
},
"showTitle": "🇫🇷 🍀❤️LIVE POKÉMON❤️🍀 2€PDD",
"isLive": false,
"scheduledStartTime": "2026-06-01T14:00:00.000Z",
"createdAt": "2026-05-19T20:01:31.000Z",
"lifecycle": "NEW"
}

How to scrape whatnot.com

  1. Go to Whatnot in Apify Console.
  2. Enter a search keyword.
  3. Set maxItems to control how many results you need.
  4. Enable includeDetails if you need full descriptions.
  5. Click Start and wait for the run to finish.
  6. Export the dataset as JSON, CSV, or Excel.

Use cases

  • Monitor a seller's shop for new listings and price drops.
  • Build a collectible price database for Pokemon, sports cards, comics, or toys.
  • Track auction competition — watch bid counts and top bids across categories.
  • Qualify sellers before buying: check rating, sold count, and verified status.
  • Feed a price-alert system for specific items (keyword + condition filter).
  • Research inventory gaps in the collectible market by category and condition.

How much does it cost to scrape whatnot.com?

Whatnot uses pay-per-event pricing. You pay a small fee when the run starts and then for each result that is actually produced.

  • Run start: $0.005 per run
  • Per result: $0.004 per Whatnot Scraper record

Example costs:

  • 10 results: $0.045
  • 25 results: $0.11
  • 100 results: $0.41
  • 200 results: $0.81
  • 500 results: $2

FAQ

How many results can I get from whatnot.com?

The number of results depends on the search query and available Whatnot Scrapers on whatnot.com. Use the maxItems parameter to control how many results are returned per run.

Can I integrate Whatnot with other apps?

Yes. Whatnot works with Apify's integrations to connect with tools like Zapier, Make, Google Sheets, Slack, and more. You can also use webhooks to trigger actions when a run completes.

Can I use Whatnot with the Apify API?

Yes. You can start runs, manage inputs, and retrieve results programmatically through the Apify API. Client libraries are available for JavaScript, Python, and other languages.

Can I use Whatnot through an MCP Server?

Yes. Apify provides an MCP Server that lets AI assistants and agents call this actor directly. Use compact mode, a single descriptionFormat, and excludeEmptyFields to keep payloads manageable for LLM context windows.

This actor extracts publicly available data from whatnot.com. Web scraping of public information is generally considered legal, but you should always review the target site's terms of service and ensure your use case complies with applicable laws and regulations, including GDPR where relevant.

Your feedback

If you have questions, need a feature, or found a bug, please open an issue on the actor's page in Apify Console. Your feedback helps us improve.

You might also like

Getting started with Apify

New to Apify? Create a free account with $5 credit — no credit card required.

  1. Sign up — $5 platform credit included
  2. Open this actor and configure your input
  3. Click Start — export results as JSON, CSV, or Excel

Need more later? See Apify pricing.

Disclaimer

This actor accesses only publicly available data on whatnot.com. You are responsible for how you use the extracted data — in particular any personal information such as names, phone numbers, or email addresses — and for complying with Whatnot's terms of use, applicable data-protection law (including the GDPR where it applies), and the anti-spam rules of your jurisdiction.

This actor is not affiliated with, endorsed by, or connected to Whatnot.

Search keywords

whatnot scraper, whatnot api, apify whatnot, whatnot data extraction, whatnot.com scraper, whatnot.com data, whatnot.com api.