whop.com APIwhop.com ↗
Access Whop marketplace data: verified companies, popular businesses by category, forum posts, and classification taxonomy via 5 structured endpoints.
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'
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.
| Param | Type | Description |
|---|---|---|
| after | string | Pagination cursor from a previous response's end_cursor field |
| limit | integer | Number of companies to fetch (max 50) |
{
"type": "object",
"fields": {
"count": "integer, number of companies returned in this page",
"companies": "array of company 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/..."
},
"route": "console-kings",
"title": "Console Kings",
"logo_url": "https://img-v2-prod.whop.com/...",
"verified": true,
"banner_url": "https://assets-2-prod.whop.com/...",
"created_at": 1764271911,
"total_views": 58389,
"member_count": 16172,
"creator_pitch": "#1 Competitive Call of Duty Gaming Platform | ConsoleKings.com",
"reviews_count": 32,
"reviews_average": 4.84
}
],
"end_cursor": "NQ",
"has_next_page": true
},
"status": "success"
}
}About the whop.com 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.
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.
- 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 viamember_count. - Map the full
get_categoriestaxonomy to classify or tag external datasets against Whop's business type hierarchy. - Monitor public forum activity using
get_public_forum_poststo track engagement signals likereaction_countandcomment_countover time. - Use
get_discover_categorieswithmin_bot_countto identify populated niches before building a product for a specific Whop segment. - Track creator pitch language by collecting
creator_pitchfields across paginatedget_verified_companiesresults for NLP analysis.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Whop have an official developer API?+
How does the category filtering in `get_popular_businesses` work?+
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?+
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?+
Can I retrieve a specific company's full review list?+
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.