# Skool Profile Scraper (`devil_port369-owner/skool-profile-scraper`) Actor

Scrape public Skool member profiles: bio, location, social links, followers, posts, groups. Input multiple profile URLs. Powered by Scrape.do.

- **URL**: https://apify.com/devil\_port369-owner/skool-profile-scraper.md
- **Developed by:** [DataFusionX](https://apify.com/devil_port369-owner) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Skool Profile Scraper | Extract Skool Member Data at Scale

**Scrape public Skool profiles** in seconds — bio, location, social links, followers, posts, groups joined, and groups created. Built for lead research, community intelligence, competitor analysis, and automation workflows.

***

### What does this Skool Profile Scraper do?

The **Skool Profile Scraper** extracts structured data from public [Skool](https://www.skool.com) member profile pages (`skool.com/@username`).

Give it one or many profile URLs — get clean, **linear JSON** ready for CRM, spreadsheets, AI agents, and n8n/Make pipelines.

#### Key features

| Feature | Details |
|--------|---------|
| **Bulk profiles** | Multiple `@username` or full profile URLs in one run |
| **Rich identity data** | Name, bio, location, timezone, join date |
| **Social & contact links** | Website, Instagram, YouTube, Twitter/X, Facebook, LinkedIn |
| **Audience metrics** | Followers, following, posts, contributions, groups count |
| **Groups intelligence** | Groups the user is a **member of** + groups they **created** (name, members, privacy, courses) |
| **Stable schema** | Linear fields for automation — no nested surprises in primary columns |
| **Reliable fetching** | No external Proxies hidden costs + Chrome TLS impersonation |
| **No Skool login** | Public profile data only |

***

### Why scrape Skool profiles?

Skool is a high-intent community platform for creators, coaches, and SaaS founders. Public profiles are a strong signal for:

- **Lead generation** — find creators with large followings and clear niches
- **Community research** — map which groups influencers join or own
- **Competitive intelligence** — track rivals’ public social stack and group footprint
- **Outreach lists** — website + Instagram + YouTube links in one row
- **AI / agent context** — structured person cards for research agents

***

### Input

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `profileUrls` | `string[]` | Yes | Skool profile URLs or usernames |

**Accepted formats**

```text
https://www.skool.com/@user1
https://www.skool.com/@user2
@user3
user4
```

#### Example input

```json
{
  "profileUrls": [
    "https://www.skool.com/@janedoe",
    "https://www.skool.com/@anotheruser"
  ]
}
```

### Output

One **dataset item per profile**. Primary fields are flat (linear) for easy export to CSV/Excel and CRM mapping.

#### Example output

```json
{
  "id": "a1b2c3d4e5f6789012345678abcdef01",
  "username": "janedoe",
  "profileUrl": "https://www.skool.com/@janedoe",
  "firstName": "Jane",
  "lastName": "Doe",
  "fullName": "Jane Doe",
  "email": null,
  "timeZone": "America/New_York",
  "createdAt": "2023-04-12T14:22:10.120000Z",
  "updatedAt": "2026-09-06T18:05:33.440000Z",
  "bio": "Community builder & online educator. Building products that help creators grow.",
  "ExtractedPhones": [],
  "ExtractedEmails": ["hello@janedoe.example"],
  "location": "Austin, Texas",
  "myersBriggs": "ENFP",
  "lastOffline": "2026-09-06T16:40:12.500000+00:00",
  "pictureProfile": "https://assets.skool.com/f/example/profile.jpg",
  "pictureBubble": "https://assets.skool.com/f/example/profile-sm.jpg",
  "pageTitle": "Jane Doe",
  "pageDescription": "Community builder & online educator. Building products that help creators grow.",
  "pageImage": "https://assets.skool.com/f/example/profile-sm.jpg",
  "linkWebsite": "https://janedoe.example",
  "linkInstagram": "https://www.instagram.com/janedoe/",
  "linkYoutube": "https://youtube.com/@janedoe",
  "linkTwitter": "https://x.com/janedoe",
  "linkFacebook": null,
  "linkLinkedin": "https://www.linkedin.com/in/janedoe",
  "totalPosts": 842,
  "totalFollowers": 12500,
  "totalFollowing": 180,
  "totalGroups": 9,
  "totalContributions": 842,
  "totalSharedGroups": 2,
  "userHasReview": false,
  "reviewsHasMore": false,
  "groupsMemberCount": 2,
  "groupsMemberOf": [
    {
      "id": "11111111111111111111111111111111",
      "name": "creators-hub",
      "displayName": "Creators Hub",
      "description": "A place for creators to share growth tactics.",
      "totalMembers": 45200,
      "totalOnlineMembers": 320,
      "totalPosts": 18900,
      "totalAdmins": 8,
      "privacy": 1,
      "membership": 1,
      "plan": "pro",
      "numCourses": 12,
      "numModules": 64,
      "logoUrl": "https://assets.skool.com/f/example/creators-hub-logo.jpg",
      "coverSmallUrl": "https://assets.skool.com/f/example/creators-hub-cover-md.jpg",
      "color": "#21B8A6",
      "createdAt": "2022-08-01T10:00:00.000000Z",
      "groupUrl": "https://www.skool.com/creators-hub"
    },
    {
      "id": "22222222222222222222222222222222",
      "name": "ai-founders",
      "displayName": "AI Founders",
      "description": "Founders building with AI.",
      "totalMembers": 9800,
      "totalOnlineMembers": 95,
      "totalPosts": 4100,
      "totalAdmins": 5,
      "privacy": 1,
      "membership": 0,
      "plan": null,
      "numCourses": 6,
      "numModules": 28,
      "logoUrl": "https://assets.skool.com/f/example/ai-founders-logo.jpg",
      "coverSmallUrl": "https://assets.skool.com/f/example/ai-founders-cover-md.jpg",
      "color": "#0693E3",
      "createdAt": "2024-01-15T09:30:00.000000Z",
      "groupUrl": "https://www.skool.com/ai-founders"
    }
  ],
  "groupsCreatedByUser": [
    {
      "id": "33333333333333333333333333333333",
      "name": "jane-inner-circle",
      "displayName": "Jane Inner Circle",
      "description": "Private mastermind for serious builders.",
      "totalMembers": 240,
      "totalOnlineMembers": 12,
      "totalPosts": 560,
      "totalAdmins": 2,
      "privacy": 1,
      "membership": 1,
      "plan": "hobby",
      "numCourses": 4,
      "numModules": 22,
      "logoUrl": "https://assets.skool.com/f/example/inner-circle-logo.jpg",
      "coverSmallUrl": "https://assets.skool.com/f/example/inner-circle-cover-md.jpg",
      "color": "#DF1A1A",
      "createdAt": "2024-06-20T15:12:00.000000Z",
      "groupUrl": "https://www.skool.com/jane-inner-circle"
    }
  ],
  "scrapedAt": "2026-09-07T12:00:00.000000+00:00"
}
```

#### Output field reference

| Field | Description |
|-------|-------------|
| `id` | Skool internal user ID |
| `username` | Profile handle (`@` without the symbol) |
| `profileUrl` | Canonical public profile URL |
| `fullName` / `firstName` / `lastName` | Display name parts |
| `bio` | Public biography |
| `location` | Location string |
| `linkWebsite` … `linkLinkedin` | Public social / site links |
| `totalFollowers` / `totalFollowing` | Audience metrics |
| `totalPosts` / `totalContributions` | Activity volume |
| `totalGroups` | Total groups associated with the account |
| `groupsMemberOf` | Structured list of groups the user belongs to |
| `groupsCreatedByUser` | Structured list of groups the user created |
| `groupsMemberNames` / `groupsCreatedNames` | Flat name lists for filters and spreadsheets |
| `scrapedAt` | ISO timestamp of the scrape |

***

### Ideal for

- Skool **lead generation** and creator outreach
- **Community mapping** (which groups leaders join or own)
- Agency reports on influencer / coach presence on Skool
- Building **datasets** of Skool power users
- Feeding **AI agents** structured person cards

***

### Related searches

Skool scraper · Skool profile scraper · scrape Skool members · Skool user data extractor · Skool community scraper · extract Skool followers · Skool group members API · Skool lead generation · scrape skool.com profiles · Skool creator research tool

# Actor input Schema

## `profileUrls` (type: `array`):

Skool profile URLs (https://www.skool.com/@username) or @usernames.

## Actor input object example

```json
{
  "profileUrls": [
    "https://www.skool.com/@frankkern",
    "https://www.skool.com/@stephengpope"
  ]
}
```

# Actor output Schema

## `results` (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 = {
    "profileUrls": [
        "https://www.skool.com/@frankkern",
        "https://www.skool.com/@stephengpope"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("devil_port369-owner/skool-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 = { "profileUrls": [
        "https://www.skool.com/@frankkern",
        "https://www.skool.com/@stephengpope",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("devil_port369-owner/skool-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 '{
  "profileUrls": [
    "https://www.skool.com/@frankkern",
    "https://www.skool.com/@stephengpope"
  ]
}' |
apify call devil_port369-owner/skool-profile-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,devil_port369-owner/skool-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/Q5CSEKTN2hjvXZUpz/builds/CCTbzDsD76XD4oS8y/openapi.json
