# Reel.farm Database Scraper (`kinaesthetic_millionaire/reel-farm-scraper`) Actor

Scrapes reel.farm's public TikTok Slideshow Database listing pages (dashboard/database, optionally filtered by niche/product/region): profiles, niches, products, and slideshow metrics.

- **URL**: https://apify.com/kinaesthetic\_millionaire/reel-farm-scraper.md
- **Developed by:** [Parsedom Inc](https://apify.com/kinaesthetic_millionaire) (community)
- **Categories:** Social media, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

## Reel.farm Creator Database Scraper

Automatically collects creator/profile data from Reel.farm's TikTok Slideshow Database — no manual copy-pasting required.

<img src="https://i.postimg.cc/8CKZ049P/how-the-reelfarm-actor-works-(1).png" alt="How the Reelfarm Dataset Scraper works: provide input, the actor scrapes the site, get structured output" />

### What You Get

For every creator profile in the database, you'll receive:

- **Profile info** – username, display name, bio, follower/following counts, avatar image
- **Campaign details** – product being promoted, product category, niche, region
- **Audience data** – top countries where the creator's followers are located
- **Slideshow performance** – likes, views, bookmarks, and images for each of the creator's slideshows

Results are delivered as:

- A ready-to-download **CSV file** (one row per slideshow)
- A structured **dataset** you can export as Excel, JSON, or CSV directly from Apify
- A short **summary** showing how many listing URLs and rows were processed

### Input Guide

| Field | What to put in it |
| --- | --- |
| **Listing Page URLs** | One or more Reel.farm TikTok Slideshow Database listing URLs, e.g. `https://reel.farm/dashboard/database/niche/self-improvement` for a single niche, `https://reel.farm/dashboard/database/medium/mobile-app` for a product medium, or the plain `https://reel.farm/dashboard/database` to scrape the whole database. Add one entry per listing you want. |
| **Max Items** | Maximum number of dataset rows to scrape **per listing URL**. Leave the default while testing, raise it (or set to `0` for unlimited) once you're happy with the results. |
| **Proxy Configuration** | Leave as-is unless you're seeing blocked or failed requests. |

### How to Run It

1. **Add your Listing Page URL(s)** — see the Input Guide above for examples.
2. **Set Max Items** to control how many rows come back per listing URL.
3. **Start the run** — the actor fetches each listing URL, retries on temporary errors, and saves progress as it goes, so a run that's stopped partway through can safely be resumed without starting over.

### Good to Know

- A large **Max Items** value (or `0` for unlimited) can take a while if your listing covers a lot of profiles; start small to confirm everything looks right first.
- No sensitive data (passwords, payment info, etc.) is collected or stored — only the public-facing creator/campaign information described above.

### 🤝 Support

Need help or have questions?

- Email us at <info@parsedom.com>
- Or visit <https://parsedom.com>
- Visit our profile on Fiverr: <https://www.fiverr.com/s/rEmNqEb>
- Apify public page: <https://apify.com/kinaesthetic_millionaire>
- You can also contact us if you want to build a custom actor.

Ready to scrape more listings? Add your URLs and start scraping! 🚀

# Actor input Schema

## `startUrls` (type: `array`):

reel.farm TikTok Slideshow Database listing page URL(s) to scrape, e.g. https://reel.farm/dashboard/database/niche/self-improvement. Leave the default to scrape the whole database.

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

Maximum number of dataset rows to scrape per listing URL (0 = unlimited)

## `maxSlideshowsPerProfile` (type: `integer`):

Maximum number of slideshow rows to include per profile (0 = unlimited). Keeps output spread across many profiles instead of exhausting Max Items on the first one.

## `proxyConfiguration` (type: `object`):

Proxy settings for fetching pages

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://reel.farm/dashboard/database"
    }
  ],
  "maxItems": 200,
  "maxSlideshowsPerProfile": 2,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (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 = {
    "startUrls": [
        {
            "url": "https://reel.farm/dashboard/database"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("kinaesthetic_millionaire/reel-farm-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 = { "startUrls": [{ "url": "https://reel.farm/dashboard/database" }] }

# Run the Actor and wait for it to finish
run = client.actor("kinaesthetic_millionaire/reel-farm-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 '{
  "startUrls": [
    {
      "url": "https://reel.farm/dashboard/database"
    }
  ]
}' |
apify call kinaesthetic_millionaire/reel-farm-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,kinaesthetic_millionaire/reel-farm-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/xwk7EAwXsgLXZ1mzZ/builds/BLiKZI2x8YZ5M9Zqf/openapi.json
