{
  "openapi": "3.0.1",
  "info": {
    "title": "Whop Content Rewards Scraper: Clipping & UGC Campaigns",
    "description": "Scrape the Whop Content Rewards directory: reward per 1K views, budget left, burn rate, platforms, payout type & campaign URLs. Monitor mode flags new clipping campaigns since your last run. Filter by reward, budget, platform, creators. Export JSON/CSV, run via API or MCP.",
    "version": "0.1",
    "x-build-id": "hA3PPfrMMGyJL2FbW"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/fayoussef~whop-clipping-campaigns-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-fayoussef-whop-clipping-campaigns-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/fayoussef~whop-clipping-campaigns-scraper/runs": {
      "post": {
        "operationId": "runs-sync-fayoussef-whop-clipping-campaigns-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/fayoussef~whop-clipping-campaigns-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-fayoussef-whop-clipping-campaigns-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "searchText": {
            "title": "Search text (optional)",
            "type": "string",
            "description": "Only keep campaigns whose title, brand or description contains this text (case-insensitive). Example: `music`, `poker`, `AI`. Leave empty to get the whole directory."
          },
          "platforms": {
            "title": "Social platforms",
            "type": "array",
            "description": "Only campaigns that accept at least one of these platforms. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "tiktok",
                "instagram",
                "youtube",
                "x"
              ],
              "enumTitles": [
                "TikTok",
                "Instagram",
                "YouTube",
                "X (Twitter)"
              ]
            },
            "default": []
          },
          "payoutTypes": {
            "title": "Payout type",
            "type": "array",
            "description": "`CPM` pays per 1,000 views (this is what nearly every clipping campaign uses). `Per post` pays a flat fee per accepted post, `Retainer` pays a recurring fee. Leave empty for all.",
            "items": {
              "type": "string",
              "enum": [
                "cpm",
                "perPost",
                "retainer"
              ],
              "enumTitles": [
                "CPM (pay per 1K views)",
                "Per post",
                "Retainer"
              ]
            },
            "default": []
          },
          "minRewardPerThousand": {
            "title": "Min reward per 1K views (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only campaigns paying at least this many dollars per 1,000 views. Example: `2`. Leave empty for any payout rate."
          },
          "minBudgetLeftUsd": {
            "title": "Min budget left (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only campaigns with at least this much unspent budget, the practical signal that new views will still get paid. Example: `5000`. Leave empty for any budget."
          },
          "maxProgressPercentage": {
            "title": "Max budget spent (%)",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Skip nearly exhausted campaigns: only keep campaigns whose budget is at most this % spent. Example: `80`. Leave empty for any."
          },
          "maxCreators": {
            "title": "Max creators already joined",
            "minimum": 0,
            "type": "integer",
            "description": "Low-competition filter: only campaigns with at most this many creators already submitting. Example: `100`. Leave empty for any."
          },
          "verifiedOnly": {
            "title": "Verified brands only",
            "type": "boolean",
            "description": "Only campaigns from brands Whop has verified.",
            "default": false
          },
          "noApplicationRequired": {
            "title": "Skip campaigns that require an application",
            "type": "boolean",
            "description": "Only campaigns you can start clipping for immediately, with no approval step.",
            "default": false
          },
          "sortBy": {
            "title": "Sort results by",
            "enum": [
              "budgetLeft",
              "reward",
              "newest",
              "progress",
              "creators"
            ],
            "type": "string",
            "description": "`Budget left` surfaces campaigns with the most money still to pay out. `Fewest creators` surfaces low-competition campaigns.",
            "default": "budgetLeft"
          },
          "maxItems": {
            "title": "Max campaigns",
            "minimum": 1,
            "type": "integer",
            "description": "Upper limit of campaigns to return. The public directory currently exposes about 50 campaigns per run, so leaving this at the default returns everything.",
            "default": 500
          },
          "onlyNewCampaigns": {
            "title": "Only new campaigns since last run",
            "type": "boolean",
            "description": "Monitoring mode: only output campaigns that were NOT present in your previous run — perfect on a schedule to catch fresh campaigns before they saturate. The first run just builds the baseline snapshot.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Proxy settings. The default Apify proxy works in most cases; switch to the RESIDENTIAL group if runs start returning zero campaigns.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}