# Whop Affiliate Offers Scraper - Commission %, $/Sale, Ratings (`tactful_anvil/whop-affiliate-offers-scraper`) Actor

Find every Whop product with an active affiliate program: commission %, $ per sale, recurring or one-time, price, rating & members. Newest launches or any category. Only affiliate offers are charged.

- **URL**: https://apify.com/tactful\_anvil/whop-affiliate-offers-scraper.md
- **Developed by:** [Mr Zack](https://apify.com/tactful_anvil) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.80 / 1,000 affiliate offers

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Whop Affiliate Offers Scraper — Commission %, $ per Sale, Ratings & Members

Find **Whop products you can earn real commissions on** — in one run. This scraper scans Whop's public marketplace and returns every product with an **active affiliate program**, together with the numbers an affiliate actually needs before promoting anything:

- **Commission %** and computed **$ per sale**
- Whether the commission is **recurring** (subscription products pay you every renewal)
- Product **price, currency and billing period**
- **Rating, review count, review histogram and % negative reviews** (promote things that don't refund)
- **Member count** of the community (social proof)
- Whether the affiliate program **requires an application** or is instantly joinable

**Fair-play pricing:** you are only charged for rows in your dataset. Products *without* an affiliate program, failed pages, offers below your commission filter, and monitor-mode duplicates are **never charged**.

### Who is this for?

- **Affiliate marketers** hunting high-commission recurring offers (30% of a $65/month membership = ~$19.50/month per referral — this scraper surfaces exactly those numbers)
- **Content creators & clippers** already promoting Whop products who want the best-paying ones in their niche
- **Newsletter and community owners** looking for products worth recommending
- **Agencies** building affiliate portfolios for clients

### Two discovery modes

1. **`newest`** (default) — scans Whop's newest-arrivals feed. Fresh launches, low competition, first-mover advantage on brand-new affiliate programs.
2. **`category`** — scans the top communities of any Whop Discover category page you list (trading, sports picks, e-commerce, fitness, AI…). All 900+ category URLs are in [Whop's category sitemap](https://whop.com/sitemaps/categories.xml).

### Output example

```json
{
  "productId": "prod_lKFZeyJbhvigU",
  "title": "Crystal Academy Membership",
  "company": "Crystal Academy",
  "url": "https://whop.com/crystal-academy/crystal-academy/",
  "affiliateEnabled": true,
  "affiliatePct": 30,
  "affiliateApplicationRequired": false,
  "price": 65,
  "currency": "usd",
  "billingPeriodDays": 30,
  "isRecurring": true,
  "commissionPerSale": 19.5,
  "commissionIsRecurring": true,
  "rating": 4.82,
  "reviewsCount": 3409,
  "negativeReviewSharePct": 1.5,
  "memberCount": 177585
}
```

### Field reference

| Field | Meaning |
| --- | --- |
| `affiliatePct` | Affiliate commission percentage set by the seller |
| `commissionPerSale` | `price × affiliatePct` — what one referral pays you (first billing period) |
| `commissionIsRecurring` | `true` when the product bills on a period (you earn on renewals) |
| `affiliateApplicationRequired` | `false` = instantly joinable affiliate program |
| `price`, `currency`, `billingPeriodDays` | First visible plan price and billing cycle |
| `rating`, `reviewsCount`, `reviewHistogram` | Community rating, count and 5★→1★ histogram |
| `negativeReviewSharePct` | Share of 1–2★ reviews — high refund-risk warning |
| `memberCount`, `activeUsersCount` | Community size signals |

### Run it on a schedule

Set `onlyNew: true` and schedule the actor daily (Apify → Schedules). Each run then returns **only affiliate offers that appeared since your last run** — duplicates are never charged. Ideal for being the first affiliate on a hot new launch.

### Use it from AI agents (MCP)

This actor works out of the box with the [Apify MCP server](https://mcp.apify.com). Ask your agent things like *"find recurring Whop affiliate offers above 30% commission with rating over 4.5"* and let it call this actor and filter the dataset for you.

### Related actors

- [Whop Content Rewards Scraper](https://apify.com/tactful_anvil/whop-content-rewards-scraper) — clipping campaigns paying for views
- [Whop New Launches Monitor](https://apify.com/tactful_anvil/whop-new-launches-monitor) — every new product, affiliate or not
- [Kick Trending Clips Scraper](https://apify.com/tactful_anvil/kick-trending-clips-scraper) — what to clip right now
- [Clipping Campaigns Aggregator](https://apify.com/tactful_anvil/clipping-campaigns-aggregator) — 4 clipping boards, one feed

### Fair use & data source

Reads only public Whop marketplace pages over plain HTTP at a polite rate. No login, no private data, no proxies needed.

# Actor input Schema

## `source` (type: `string`):

Where to find products: 'newest' scans the newest-arrivals feed (fresh launches, first-mover offers); 'category' scans the top communities of the Discover category pages you list below.

## `categoryUrls` (type: `array`):

Whop Discover browse pages, e.g. https://whop.com/discover/browse/coaching-and-courses/trading-and-investing/ — see https://whop.com/sitemaps/categories.xml for all 900+ categories.

## `maxProducts` (type: `integer`):

Stop after this many affiliate offers have been pushed. Max 200.

## `maxCompaniesPerCategory` (type: `integer`):

Category mode only: how many top communities to check per category page (max 24).

## `minCommissionPct` (type: `integer`):

Skip offers below this commission percentage. Skipped offers are never charged.

## `onlyNew` (type: `boolean`):

Remember seen products between runs and only output (and charge) offers you have not seen before. Perfect for schedules.

## Actor input object example

```json
{
  "source": "newest",
  "categoryUrls": [],
  "maxProducts": 50,
  "maxCompaniesPerCategory": 12,
  "minCommissionPct": 0,
  "onlyNew": false
}
```

# Actor output Schema

## `offers` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("tactful_anvil/whop-affiliate-offers-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("tactful_anvil/whop-affiliate-offers-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call tactful_anvil/whop-affiliate-offers-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,tactful_anvil/whop-affiliate-offers-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/1iZFmQ0Ve6wcyhr4R/builds/eWzpi3T99Jaqg3YGh/openapi.json
