Discover/Whop API
live

Whop APIwhop.com

Access Whop marketplace data: verified companies, popular businesses by category, forum posts, and classification taxonomy via 5 structured endpoints.

Endpoint health
verified 4d ago
get_popular_businesses
get_public_forum_posts
get_discover_categories
get_verified_companies
get_categories
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Whop API?

The Whop.com API exposes 5 endpoints covering the Whop digital marketplace, returning structured data on verified companies, popular businesses, the full category taxonomy, public forum posts, and discover sections. The get_verified_companies endpoint alone surfaces fields like member_count, reviews_average, creator_pitch, and owner details, giving developers a direct feed into Whop's creator economy listings without manual browsing.

Try it
Pagination cursor from a previous response's end_cursor field
Number of companies to fetch per page (max 50)
api.parse.bot/scraper/7201534b-d436-4a37-95d9-3d3cb7c533a6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7201534b-d436-4a37-95d9-3d3cb7c533a6/get_verified_companies?limit=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace whop-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.whop_marketplace_api import Whop, Business, BusinessCategory, ForumPost, DiscoverCategory, IndustryGroup

whop = Whop()

# Discover the business classification taxonomy
for category in whop.businesscategories.list():
    print(category.business_type)
    for group in category.industry_groups:
        print(f"  {group.industry_group}: {group.industry_types}")

# Browse verified companies
for business in whop.businesses.list_verified(limit=10):
    print(business.title, business.member_count, business.reviews_average)
    print(f"  Owner: {business.owner.name} (@{business.owner.username})")

# Filter popular businesses by type
for biz in whop.businesses.list_popular(business_type="software", limit=5):
    print(biz.title, biz.verified, biz.total_views)

# Read the public forum feed
for post in whop.forumposts.list(limit=5):
    print(post.username, post.content, post.view_count)
    for comment in post.recent_comments:
        print(f"  Reply by {comment.username}: {comment.content}")

# Explore random discover categories
for cat in whop.discovercategories.list(count=3):
    print(cat.title, cat.subtitle, cat.industry_type)
All endpoints · 5 totalmissing one? ·

Fetch verified companies from the Whop marketplace with cursor-based pagination. Returns company details including title, member count, reviews, creator pitch, owner info, and logo. Only includes businesses that have been verified by Whop.

Input
ParamTypeDescription
afterstringPagination cursor from a previous response's end_cursor field
limitintegerNumber of companies to fetch per page (max 50)
Response
{
  "type": "object",
  "fields": {
    "count": "integer, number of companies returned in this page",
    "companies": "array of Business objects with id, title, route, url, verified, member_count, reviews_average, reviews_count, creator_pitch, created_at, total_views, logo_url, banner_url, and owner info",
    "end_cursor": "string, cursor to pass as 'after' for the next page",
    "has_next_page": "boolean, whether more results are available"
  },
  "sample": {
    "data": {
      "count": 1,
      "companies": [
        {
          "id": "biz_d8EOEpIlenzPUe",
          "url": "https://whop.com/console-kings/",
          "owner": {
            "id": "user_YJ2mtsM9U3s3W",
            "bio": null,
            "name": "ConsoleKings",
            "username": "consolekings",
            "profile_pic": "https://assets-2-prod.whop.com/example.png"
          },
          "route": "console-kings",
          "title": "Console Kings",
          "logo_url": "https://img-v2-prod.whop.com/example.jpg",
          "verified": true,
          "banner_url": "https://assets-2-prod.whop.com/example",
          "created_at": 1764271911,
          "total_views": 98178,
          "member_count": 29674,
          "creator_pitch": "#1 Competitive Call of Duty Gaming Platform",
          "reviews_count": 59,
          "reviews_average": 4.86
        }
      ],
      "end_cursor": "NQ",
      "has_next_page": true
    },
    "status": "success"
  }
}

About the Whop API

Company and Business Data

The get_verified_companies endpoint returns paginated lists of Whop-verified companies, each with id, title, route, url, verified status, member_count, reviews_average, reviews_count, creator_pitch, and logo. Pagination is cursor-based: pass the end_cursor from one response as the after parameter in the next call. Up to 50 records per page are supported.

The get_popular_businesses endpoint adds filtering by business_type, industry_group, and industry_type. Valid filter values are not hardcoded — they come from the get_categories endpoint, which returns the full classification hierarchy including every top-level business type and its nested industry groups and industry types. This means filter sets stay current as Whop's taxonomy evolves.

Category Discovery

get_categories returns the complete taxonomy in a single call: an array of objects where each entry has a business_type string and an industry_groups array. Use the leaf-level strings directly as filter parameters in get_popular_businesses. The get_discover_categories endpoint returns a randomized selection of categories that currently have active businesses, with optional count and min_bot_count inputs — useful for sampling what segments are actually populated.

Forum Posts

get_public_forum_posts returns public posts across the Whop platform, including title, content, comment_count, view_count, reaction_count, attachment data, and recent comments. Because the forum feed moves quickly, after_cursor may return empty results if the cursor is stale. For reliable backward pagination through older content, use before_cursor instead.

Reliability & maintenanceVerified

The Whop API is a managed, monitored endpoint for whop.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when whop.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official whop.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate verified Whop company listings to build a directory of creator-economy businesses with member and review counts.
  • Filter popular businesses by industry_group (e.g. 'trading_and_investing') to benchmark competitor community sizes via member_count.
  • Map the full get_categories taxonomy to classify or tag external datasets against Whop's business type hierarchy.
  • Monitor public forum activity using get_public_forum_posts to track engagement signals like reaction_count and comment_count over time.
  • Use get_discover_categories with min_bot_count to identify populated niches before building a product for a specific Whop segment.
  • Track creator pitch language by collecting creator_pitch fields across paginated get_verified_companies results for NLP analysis.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Whop have an official developer API?+
Yes. Whop provides an official API for developers building apps on the Whop platform, documented at https://dev.whop.com. That API focuses on product creation, membership management, and app integrations for sellers. The Parse API described here covers the public marketplace discovery surface — verified companies, popular businesses, category taxonomy, and forum posts.
How does the category filtering in `get_popular_businesses` work?+
The business_type, industry_group, and industry_type parameters all accept string slugs. The valid values are not documented statically — you retrieve them from get_categories, which returns the live taxonomy. Pass any combination of the three filter fields; they are all optional and can be used independently or together.
Why might `after_cursor` in `get_public_forum_posts` return empty results?+
The public forum feed is fast-moving, so a forward cursor (after_cursor) can expire or fall behind if too much time passes between requests. For stable backward pagination through archived posts, use before_cursor instead. Real-time polling should re-anchor from a fresh call rather than relying on a stale after_cursor.
Does the API return individual product or pass listings sold within a company?+
Not currently. The endpoints cover company-level data (title, member count, reviews, creator pitch) and category metadata, but do not return individual product listings, pricing tiers, or pass details within a company. You can fork this API on Parse and revise it to add an endpoint targeting individual product or pass data.
Can I retrieve a specific company's full review list?+
Not currently. The API returns aggregated review signals (reviews_average and reviews_count) per company, but individual review text and reviewer details are not exposed. You can fork this API on Parse and revise it to add an endpoint that returns individual review records for a given company.
Page content last updated . Spec covers 5 endpoints from whop.com.
Related APIs in MarketplaceSee all →
yellowpages.com API
Search and retrieve business listings, contact info, hours, categories, and customer reviews from YellowPages.com. Browse by category or location across the US.
clutch.co API
clutch.co API
bizbuysell.com API
Search for businesses available for sale across multiple categories and view detailed information about specific listings on BizBuySell.com. Browse business categories to explore different industries and find opportunities that match your investment interests.
thecompaniesapi.com API
Enrich your company database with 80+ data points per company, search by industry or company details, and discover email patterns to drive your business intelligence. Find verified company information, get pricing data, and ask contextual questions about any organization to fuel your sales, marketing, or research efforts.
hipages.com.au API
Search for local service businesses on hipages.com.au, view detailed business profiles and customer reviews, and explore available service categories all in one place. Find the right tradesperson or service provider by browsing ratings, contact information, and customer feedback.
shpock.com API
Search and browse products listed on Shpock.com, view detailed listing information and seller profiles, and explore all available marketplace categories. Find what you're looking for by searching inventory, checking seller histories, and discovering related items from individual merchants.
wlw.de API
Search for B2B suppliers and manufacturers on wlw.de, view detailed company profiles with contact information and product catalogs, and discover featured businesses and products. Find the right industrial suppliers and vendors quickly by browsing company details and product listings across Germany's largest B2B marketplace.
trustpilot.com API
Access company reviews, ratings, and user profiles from Trustpilot to research businesses, compare ratings across categories, and analyze customer feedback and company responses. Find detailed company overviews and review summaries to make informed decisions about products and services.