# OnlyFans Profile Scraper (`leon.operator/onlyfans-profile-scraper`) Actor

Scrape OnlyFans profiles in bulk — 50+ fields per creator: subscription price, post/photo/video counts, likes, parsed age, social links, avatar & more. Export to JSON, CSV, or Excel. No login required.

- **URL**: https://apify.com/leon.operator/onlyfans-profile-scraper.md
- **Developed by:** [Leon Operator](https://apify.com/leon.operator) (community)
- **Categories:** Lead generation, Social media, Integrations
- **Stats:** 7 total users, 3 monthly users, 100.0% runs succeeded, 2 bookmarks
- **User rating**: No ratings yet

## Pricing

$4.00 / 1,000 profile infomations

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

## OnlyFans Profile Scraper

Extract public **OnlyFans profile data in bulk** — fast, reliable, and structured.
Give it a list of usernames or profile URLs and get a clean JSON record for each
creator: pricing, content counts, engagement, activity, images, and social links.

No login or credentials required from you — just pass the profiles you want.

### What you get per profile (50+ fields)

- **Identity:** username, display name, **parsed age**, bio, profile URL, verification
- **Pricing & tips:** subscription price, current/promo price, bundles, promotions, tips enabled + min/max
- **Content:** post, photo, video, audio and total media counts, archived posts, finished streams, pinned posts
- **Engagement:** likes (favorited count), favorites, subscriber count (when public)
- **Activity:** join date, first-post date, last-seen timestamp, has stories / live stream
- **Interaction:** can chat, can receive messages, can earn
- **Media:** avatar + header URLs **with thumbnail variants** and header dimensions
- **Status flags:** verified, real performer, adult content, active, restricted, paywalled
- **Links & socials:** website, wishlist, Spotify; Instagram/Twitter-X/TikTok/YouTube/Snapchat (when in bio)

### Input

Just the profiles:

```json
{
  "profiles": ["onlyfans", "carlyjanefree"],
  "includeSocials": true
}
```

| Field | Type | Description |
|---|---|---|
| `profiles` | array | OnlyFans usernames or profile URLs to scrape (required) |
| `includeSocials` | boolean | Extract social links from the profile (default: `true`) |
| `proxyConfiguration` | object | Optional proxy settings |

### Output

One record per profile, pushed to the dataset (export as JSON, CSV, Excel, or via API):

```json
{
  "id": 494121948,
  "username": "jessie_pie",
  "name": "Jessie Pie (19 y.o.)",
  "age": 19,
  "bio": "Hey! My name is Jessie but you can call me just Jes! I'm 19 Y.O.",
  "profileUrl": "https://onlyfans.com/jessie_pie",
  "isVerified": true,
  "isPerformer": true,
  "isAdultContent": false,
  "subscribePrice": 0,
  "tipsEnabled": false,
  "tipsMin": 5,
  "tipsMax": 200,
  "postsCount": 464,
  "photosCount": 463,
  "videosCount": 5,
  "mediasCount": 468,
  "favoritedCount": 34292,
  "favoritesCount": 104,
  "hasPinnedPosts": true,
  "finishedStreamsCount": 3,
  "joinDate": "2025-04-21T00:00:00+00:00",
  "firstPublishedPostDate": "2025-04-26T00:00:00+00:00",
  "lastSeen": "2026-07-05T12:38:56+00:00",
  "canChat": true,
  "avatar": "https://public.onlyfans.com/%E2%80%A6/avatar.png",
  "avatarThumbs": { "c50": "https://…", "c144": "https://…" },
  "header": "https://public.onlyfans.com/%E2%80%A6/header.png",
  "headerSize": { "width": 4043, "height": 1215 },
  "socials": {},
  "scrapedAt": "2026-07-05T12:38:56.000Z"
}
```

Some fields are hidden by OnlyFans (e.g. exact subscriber count) and are returned as
`null`. Profiles that can't be fetched return `{ inputProfile, username, error }`.

### Use cases

- **Market & competitor research** — track pricing, content volume, and activity
- **Creator discovery & analytics** — build databases of creators and their stats
- **Lead sourcing** — pull social handles for outreach
- **Monitoring** — watch a set of profiles over time

### Pricing

Pay per result — you're charged only for each profile successfully scraped. No
subscription, no minimums.

### How to use

1. Add one or more usernames/URLs to **Profiles**.
2. Click **Start**.
3. Download results as JSON, CSV, or Excel, or pull them via the Apify API.

### Notes

This actor collects **publicly available** profile information. Please ensure your
use complies with OnlyFans' Terms of Service and applicable laws and regulations in
your jurisdiction.

# Actor input Schema

## `profiles` (type: `array`):

OnlyFans profile URLs or usernames to scrape, e.g. https://onlyfans.com/onlyfans or just onlyfans.

## `includeSocials` (type: `boolean`):

Best-effort parse of Instagram/Twitter/TikTok/YouTube/Snapchat links from the profile.

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

Proxy for the OnlyFans API requests. Apify Proxy by default; light — the authenticated API needs little proxying.

## Actor input object example

```json
{
  "profiles": [
    "onlyfans",
    "carlyjanefree"
  ],
  "includeSocials": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `profiles` (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 = {
    "profiles": [
        "onlyfans"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("leon.operator/onlyfans-profile-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 = { "profiles": ["onlyfans"] }

# Run the Actor and wait for it to finish
run = client.actor("leon.operator/onlyfans-profile-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 '{
  "profiles": [
    "onlyfans"
  ]
}' |
apify call leon.operator/onlyfans-profile-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,leon.operator/onlyfans-profile-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/hDvilaLqBmg9Ibvtx/builds/oIWleG16suL1OVsx7/openapi.json
