# Vyro Clipping Campaigns Scraper (`tactful_anvil/vyro-clipping-campaigns-scraper`) Actor

Scrape Vyro (MrBeast's clipping marketplace) public campaign board: CPM per 1,000 views, budget spent vs remaining, paid views left, source footage links, posting rules and a 0-100 opportunity score. HTTP-only, no login, no key. Schedule it to catch new campaigns while budget is still on the table.

- **URL**: https://apify.com/tactful\_anvil/vyro-clipping-campaigns-scraper.md
- **Developed by:** [Mr Zack](https://apify.com/tactful_anvil) (community)
- **Categories:** Lead generation, Social media, Videos
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.96 / 1,000 campaign results

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/platform/actors/running/actors-in-store#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

## Vyro Clipping Campaigns Scraper — MrBeast's clipping marketplace, one JSON row per campaign

Scrape the **public campaign board of [Vyro](https://www.vyro.com/campaigns)** — the clipping marketplace launched by MrBeast's Viewstats — into clean, structured data: **CPM per 1,000 views, budget spent vs remaining, how many paid views are left, source footage links, posting rules, deadlines** and a 0-100 opportunity score.

No login. No API key. No proxies. Just fast HTTP against Vyro's own public API.

### Who this is for

- **Clippers** who don't want to miss a drop. Vyro campaigns are rare and big — MrBeast's first public campaign burned its **$20,000 budget in days**. By the time you check the board manually, the money can be gone. Run this on a schedule and catch fresh campaigns while `budgetRemainingUsd` is still fat.
- **Clipping crews & alpha groups** feeding a Discord/Telegram with new-campaign alerts (`isFreshWithin24h = true` → ping).
- **Agencies & researchers** tracking creator-economy spend: who is running campaigns, at what CPM, and how fast budgets burn.
- **Builders** making clipping dashboards/tools — this is the Vyro side of your data layer.

### Why the derived fields matter

The raw board tells you a campaign exists. This actor tells you **whether it's still worth your time**:

- `remainingViews` — remaining budget ÷ CPM × 1,000 = how many views can still get paid. `0` = don't bother editing.
- `budgetSpentPct` — how hot the campaign is burning.
- `ageHours` / `isFreshWithin24h` — the early-bird signal. Fresh campaign + big budget = the best moment to start clipping.
- `opportunityScore` (0-100) — CPM (35) + budget headroom (35) + freshness (15) + time left (15). Ended or spent-out campaigns score 0.

### Output fields

| Field | Description |
|---|---|
| `name`, `creatorName`, `url`, `slug`, `id` | Campaign identity — e.g. creator "MrBeast" |
| `status`, `type`, `visibility`, `serviceModel` | `active` / `clipping` / `public` / `enterprise` |
| `cpmUsd` | USD paid per 1,000 verified views |
| `budgetUsd`, `budgetSpentUsd`, `budgetRemainingUsd`, `budgetSpentPct`, `budgetAvailable` | Pool math |
| `remainingViews` | Paid views still available at this CPM |
| `platforms`, `languages` | Where clips must be posted (tiktok / youtube / instagram) |
| `minViewsPerClip` | Views a clip must reach before it earns |
| `hashtags`, `ftcHashtags` | Required tags incl. FTC disclosure |
| `subtitlesRequired`, `requireFreshProfile`, `allowCollabAndTagging` | Posting rules |
| `sourceMediaLinks` | Links to the source footage to clip |
| `isLocked`, `licenseFeeUsd` | Enrollment gate + license fee if any |
| `createdAt`, `startDate`, `endDate`, `ageHours`, `endsInDays`, `closingWithin48h`, `isFreshWithin24h`, `isFreshWithin72h` | Time math |
| `opportunityScore` | 0-100, see above |

### Input

All inputs optional — default run returns the full active board sorted by opportunity.

- `activeOnly` (default `true`) — active campaigns only
- `budgetAvailableOnly` — drop spent-out campaigns
- `platforms` — e.g. `["tiktok"]`
- `minCpmUsd`, `minRemainingBudgetUsd` — money filters
- `freshWithinHours` — only campaigns created in the last N hours (the alert pattern)
- `sortBy` — `opportunity` | `cpm` | `remainingBudget` | `newest` | `endingSoon`

### How to schedule this actor (recommended)

The board changes fast; the win is catching changes early. In the Apify Console:

1. Open the actor → **⋯ → Schedule** (or Console → Schedules → Create new).
2. Cron `*/30 * * * *` (every 30 min) or `0 * * * *` (hourly) is plenty.
3. Set input `freshWithinHours: 1` on a dedicated schedule if you only want *new* drops — most runs return 0 rows (you pay just the $0.01 start fee) and the run that does return a row is exactly the alert you want.
4. Add an [integration](https://docs.apify.com/platform/integrations) (Slack, Telegram via webhook, Make, Zapier, n8n) on run-succeeded to forward fresh rows to where your crew lives.
5. A `SUMMARY` object (board totals, budget remaining, top opportunities) is saved to the key-value store on every run — handy for dashboards.

### Pricing

Pay-per-event: **$0.01 per run + $0.00096 per campaign row** (from $0.96/1,000 results). The board is small (single-digit campaigns), so a full pull costs about a cent — schedule it aggressively.

### Related actors by the same author

- [Whop Content Rewards Scraper](https://apify.com/tactful_anvil/whop-content-rewards-scraper) — the biggest clipping campaign board (Whop), same buyer-first field design. Run both to cover the whole clipping market.
- [Galxe Quest Rewards Scraper](https://apify.com/tactful_anvil/galxe-quest-rewards-scraper) — quest/airdrop reward board with the same money-math approach.

### Fair use & data

Public data only, fetched politely (sub-page-per-second) from an unauthenticated public endpoint. No login walls are bypassed, no personal data is collected. Respect Vyro's ToS when acting on the data.

*Not affiliated with Vyro, Viewstats or MrBeast.*

# Actor input Schema

## `activeOnly` (type: `boolean`):

Keep only campaigns whose status is <code>active</code>.

## `budgetAvailableOnly` (type: `boolean`):

Drop campaigns whose budget is fully spent (no paid views left to earn).

## `platforms` (type: `array`):

Keep campaigns targeting any of these platforms. Empty = all.

## `minCpmUsd` (type: `integer`):

Keep campaigns paying at least this much per 1,000 views.

## `minRemainingBudgetUsd` (type: `integer`):

Keep campaigns with at least this much budget left in the pool.

## `freshWithinHours` (type: `integer`):

Keep only campaigns created within the last N hours — the monitor pattern: schedule the actor and alert on fresh drops.

## `sortBy` (type: `string`):

Row order in the dataset.

## `maxItems` (type: `integer`):

Hard cap on rows pulled (each row is a billed result).

## `pageDelayMs` (type: `integer`):

Politeness delay between API pages.

## Actor input object example

```json
{
  "activeOnly": true,
  "budgetAvailableOnly": false,
  "platforms": [],
  "sortBy": "opportunity",
  "maxItems": 500,
  "pageDelayMs": 600
}
```

# Actor output Schema

## `campaigns` (type: `string`):

One row per Vyro clipping campaign: CPM per 1,000 views, budget spent vs remaining, paid views left, source footage links, posting rules and a 0-100 opportunity score.

# 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 = {
    "platforms": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("tactful_anvil/vyro-clipping-campaigns-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 = { "platforms": [] }

# Run the Actor and wait for it to finish
run = client.actor("tactful_anvil/vyro-clipping-campaigns-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 '{
  "platforms": []
}' |
apify call tactful_anvil/vyro-clipping-campaigns-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,tactful_anvil/vyro-clipping-campaigns-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/7iV82QDO2kuUSc3XX/builds/cRrlmmC6jfDGHp7ju/openapi.json
