VOOZH about

URL: https://apify.com/epicscrapers/whatnot-search-scraper

⇱ Whatnot Search Scraper β€” Listings, Streams & Seller Data Β· Apify


πŸ‘ Whatnot Search Scraper β€” Listings, Streams & Seller Data avatar

Whatnot Search Scraper β€” Listings, Streams & Seller Data

Pricing

from $1.00 / 1,000 results

Go to Apify Store

Whatnot Search Scraper β€” Listings, Streams & Seller Data

Extract Whatnot search results by keyword or URL. Get listings, live streams, products, seller profiles, and categories with prices, bids, and viewer counts. Run one query or many, across all verticals. Results come as clean JSON for market research, price monitoring, or competitor analysis etc.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ Epic Scrapers

Epic Scrapers

Maintained by Community

Actor stats

1

Bookmarked

7

Total users

4

Monthly active users

a month ago

Last modified

Share

Whatnot Search Scraper

Extract Whatnot search results by keyword or URL. Get listings, live streams, products, seller profiles, and categories with prices, bids, and viewer counts.

Use Cases

  • Market research β€” Monitor what's selling and at what price across categories on Whatnot
  • Competitor analysis β€” Track seller listings, pricing strategies, and product catalog
  • Price monitoring β€” Watch listing prices and auction bids over time
  • Inventory tracking β€” Keep an eye on product availability and new listings
  • Lead generation β€” Discover active sellers and their contact profiles
  • Content research β€” Find trending products and livestream topics

Features

  • Search Whatnot by keyword β€” Run one or multiple text queries across any vertical
  • Search Whatnot by URL β€” Paste exact Whatnot search URLs with sort, filter, and vertical params
  • Extract product listings β€” Get titles, descriptions, prices, images, quantities, and transaction types
  • Extract live streams β€” Get active viewer counts, titles, statuses, and stream tokens
  • Extract seller profiles β€” Get usernames, follower counts, sold counts, and seller ratings
  • Extract product catalog data β€” Get product names, listing prices, last sale prices, and listing counts
  • Extract categories and tags β€” Get category labels, viewer counts, and deeplinks
  • Search across all verticals β€” UNIVERSAL mode returns a mixed result set of all types
  • Run multiple queries in one go β€” Each query gets its own result set, results are merged
  • Combine URLs and queries β€” Both sources run together, results interleaved
  • Quick results with pagination β€” Configurable result limits and per-query caps

How It Works

Search by Text Query

Provide one or more search terms. Each query runs against the vertical you choose β€” or UNIVERSAL to search everything at once.

Supported verticals:

  • PRODUCT β€” Individual item listings (buy-it-now and auction)
  • LIVESTREAM β€” Active live streams with viewer counts
  • USER β€” Seller profiles with ratings and stats
  • CATEGORY β€” Product categories and tags
  • UNIVERSAL β€” All of the above, results interleaved

Search by URL

Paste a Whatnot search URL directly. The scraper parses the URL's own query, vertical, sort, and referring source params β€” exactly as Whatnot uses them.

Example URLs:

https://www.whatnot.com/search?query=pokemon&searchVertical=PRODUCT
https://www.whatnot.com/search?query=sneakers&sort={"direction":"DESC","field":"VIEWER_COUNT"}
https://www.whatnot.com/search?query=magic+the+gathering&searchVertical=LIVESTREAM

Each URL is independent β€” the vertical and type selection come from the URL itself, not global settings.

Combined Search

Run URLs and text queries together. Both execute in parallel and results are interleaved into a single output.

Input

FieldTypeDescription
searchUrlsstring[]Whatnot search URLs. Each URL is parsed for its own query, vertical, sort, and params.
searchQueriesstring[]Search terms. Each runs against the selected vertical or UNIVERSAL.
verticalstringContent type filter for query searches. One of: UNIVERSAL, PRODUCT, LIVESTREAM, USER, CATEGORY.
maxResultsPerQueryintegerEach query or URL gets up to this many results.
cookiesstringBrowser cookies from an authenticated Whatnot session.
proxyConfigurationobjectApify proxy configuration.

At least one of searchUrls or searchQueries is required.

Example Input

{
"searchQueries":["pokemon cards","sneakers"],
"vertical":"PRODUCT",
"maxResultsPerQuery":100
}

Output

Each result is a structured object. The type field tells you what kind of result it is.

Result Types

Listing β€” A buy-it-now or auction item

{
"type":"listing",
"title":"Pokemon - Cards Dunsparce GG23/GG70 Crown Zenith",
"subtitle":"Mint βˆ™ Crown Zenith",
"description":"Pokemon - Cards Dunsparce GG23/GG70 Crown Zenith",
"transactionType":"BUY_IT_NOW",
"quantity":1,
"price":{"amount":500,"currency":"GBP"},
"currentBid":null,
"currentBidCount":null,
"isLive":false,
"images":[{"url":"https://images.whatnot.com/..."}],
"user":{
"username":"mysteryraiders",
"sellerRating":{"overall":5,"numReviews":145}
},
"searchQuery":"pokemon cards",
"vertical":"PRODUCT",
"scrapedAt":"2026-05-17T18:31:44.674Z"
}

Livestream β€” An active live stream

{
"type":"livestream",
"title":"FREE EVOLVING SKIES GIVEAWAY",
"status":"PLAYING",
"startTime":1779027948159,
"activeViewers":260,
"thumbnail":{
"smallImage":"https://images.whatnot.com/...",
"biggerImage":"https://images.whatnot.com/..."
},
"user":{"username":"qualitypulls"},
"tags":[
{"label":"PokΓ©mon","name":"pokemon"},
{"label":"$1 Starts","name":"one_dollar_starts"}
],
"searchQuery":"pokemon cards",
"vertical":"LIVESTREAM",
"scrapedAt":"2026-05-17T18:31:54.957Z"
}

Product β€” A product catalog entry with aggregated pricing

{
"type":"product",
"name":"Pokemon Booster Pack",
"image":{"url":"https://images.whatnot.com/..."},
"listingPrice":{"amount":499,"currency":"USD"},
"lastSalePrice":{"amount":450,"currency":"USD"},
"numListings":12,
"searchQuery":"pokemon cards",
"vertical":"PRODUCT",
"scrapedAt":"2026-05-17T18:31:55.000Z"
}

User β€” A seller profile

{
"type":"user",
"username":"pokemoncards",
"isFollowing":false,
"followerCount":186,
"soldCount":null,
"isLive":false,
"sellerRating":null,
"profileImage":{"url":"https://images.whatnot.com/..."},
"searchQuery":"pokemon cards",
"vertical":"USER",
"scrapedAt":"2026-05-17T18:31:54.914Z"
}

Category / Tag β€” A product category or livestream tag with viewer count

{
"type":"tag",
"label":"PokΓ©mon Cards",
"name":"pokemon_cards",
"viewerCount":17726,
"deeplink":"tag/pokemon_cards",
"searchQuery":"pokemon cards",
"vertical":"CATEGORY",
"scrapedAt":"2026-05-17T18:31:54.894Z"
}

Search Metadata

The output array includes a searchMeta object attached to the array itself:

{
"mode":"search",
"sources":["url","query"],
"totalResults":47,
"resultCounts":{
"listing":20,
"livestream":15,
"user":8,
"tag":4
},
"fetchedAt":"2026-05-17T18:31:55.000Z"
}
  • mode β€” Whether results came from URLs, queries, or both
  • sources β€” Which sources were used (url, query)
  • totalResults β€” Total count
  • resultCounts β€” Breakdown by result type
  • fetchedAt β€” ISO timestamp

Results from URL-based searches also include:

  • sourceUrl β€” The original Whatnot search URL
  • rawUrlParams β€” All parsed URL parameters

Common Fields

Every result includes these fields regardless of type:

  • type β€” One of: listing, livestream, product, user, category, tag
  • searchQuery β€” The search term or URL query that produced this result
  • vertical β€” The search vertical (PRODUCT, LIVESTREAM, USER, CATEGORY)
  • scrapedAt β€” ISO 8601 scrape timestamp
  • cursor β€” Pagination cursor (internal use)

FAQ

Can I search multiple queries at once?

Yes. Pass an array of search terms in searchQueries. Each query runs in sequence, results are merged. Each query fetches up to maxResultsPerQuery results.

Can I combine URLs and text queries?

Yes. Both searchUrls and searchQueries run together in parallel. Results are interleaved into a single output.

What data can I extract from listings?

Each listing includes: title, subtitle, description, price, currency, current bid, bid count, quantity, transaction type (buy-it-now or auction), live status, images, seller info with ratings, and scraped timestamp.

Does this need a Whatnot account or login?

No. Public search results are accessible without authentication. Cookies are optional and only needed for personalized results.

What is UNIVERSAL vertical?

UNIVERSAL searches across all content types (PRODUCT, LIVESTREAM, USER, CATEGORY) and interleaves the results so you get a mixed feed β€” similar to Whatnot's own default search experience.

How are results from different queries combined?

Results are collected per query up to the configured limits, then merged. When both URLs and queries are used, results are interleaved (alternating between sources).

Can I control how many results per query?

Yes. Set maxResultsPerQuery to the number of results you want per query or URL. Each query independently fetches up to that many results.

What if I only want live streams?

Set vertical to LIVESTREAM or use a URL with searchVertical=LIVESTREAM. This returns only active livestream results.

What if I only want sellers?

Set vertical to USER. This returns seller profiles with usernames, ratings, follower counts, and sold counts.

Limitations

  • Public data only. Authenticated-only features (following, watchlists) are not available.
  • Result counts depend on Whatnot's search index. Extremely niche queries may return fewer results than requested.
  • Livestream results are snapshots β€” viewer counts change in real time on Whatnot.

Support

For issues, feature requests, or questions, open a discussion or issue on the repository.

You might also like

Zameen.com Scraper | Pakistan Real Estate & Property Data

haketa/zameen-scraper

Zameen scraper & API for Pakistan real estate: search property for sale and rent and export address, price, beds, baths, area, type, agent, photos and coordinates. Pakistan property market data and real-estate lead generation β€” fast, no login.

App Store Reviews Scraper | Translation & All Countries

fatihtahta/app-store-global-reviews-scraper

Pull Apple App Store reviews across 160+ country storefront with auto-translation and sentiment analysis. Get ratings, title/body, versions, authors, timestamps, helpful votes, and country codes in clean JSON/CSV. Ideal for sentiment tracking, localization QA, and competitor monitoring.

TikTok Transcript Scraper

maximedupre/tiktok-transcript-scraper

Extract public TikTok transcripts, captions, timed segments, VTT/SRT subtitles, and video metadata from TikTok video URLs. Export rows to datasets, API, CSV, Excel, or integrations.

πŸ‘ User avatar

Maxime DuprΓ©

27

Reddit Scraper

labrat011/reddit-scraper

Scrape Reddit posts, comments, search results, and user profiles. No API keys or browser needed. Supports 4 modes: subreddit posts (hot/new/top/rising), Reddit search, user profiles, and full comment trees. Fast, lightweight HTTP-based scraping with built-in rate limiting and retry logic.

Gmail Username Checker

maximedupre/gmail-username-checker

Check Gmail username availability in bulk. Paste usernames or @gmail.com addresses and get clean available, taken, or invalid rows without creating accounts.

πŸ‘ User avatar

Maxime DuprΓ©

50

5.0

Zameen.com Scraper

shahidirfan/Zameen-com-Scraper

Extract detailed real estate listings from Pakistan's leading property portal. This lightweight actor efficiently scrapes data for houses, plots, and commercial properties for sale or rent. For seamless extraction and to avoid IP bans, the use of residential proxies is strongly recommended.

51

5.0

TikTok Video Scraper Premium

radeance/tiktok-video-scraper-premium

Access TikTok video & slideshow data, transcribe videos and retrieve creator and music data, hashtags, likes, views, shares and mentions at scale. Download videos in bulk in native quality and subtitles as WebVTT or SRT. Export your data in JSON, CSV, Excel, RSS & more...

138

5.0

TikTok Comments Scraper API

scraptik/tiktok-comments-scraper-api

Apify’s LOWEST cost TikTok Comment Scraper. Access the TikTok mobile API for comments and comment replies. Unlock TikTok data at scale. Have custom needs? Visit scraptik.com

TikTok Slideshow Downloader

maximedupre/tiktok-slideshow-downloader

Download photos from public TikTok slideshow URLs. Save each image to Apify storage with source links, author data, captions, post stats, file metadata, and dataset exports.

πŸ‘ User avatar

Maxime DuprΓ©

18

Olx Scraper

hello.datawizards/olx-scraper

The OLX Scraper is an Apify actor designed to extract detailed data from olx.com. Customize inputs like item limit, price range, and search query. Get comprehensive JSON outputs with listing details, images, prices, and more. Ideal for precise and efficient data scraping.

250