# ConvertKit / Kit Creator Profiles & Landing Pages Scraper (`crawlerbros/convertkit-scraper`) Actor

Scrape public ConvertKit (Kit) creator landing pages and profiles. Extract creator name, bio, CTA text, avatar, social links, form type, and tags from ck.page, kit.com, and custom domain landing pages

- **URL**: https://apify.com/crawlerbros/convertkit-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, Developer tools, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 7 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 results

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

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## ConvertKit / Kit Creator Profiles & Landing Pages Scraper

Extract public data from **ConvertKit** (now rebranded as **Kit**) creator landing pages and creator profiles. Supports all URL formats: `{creator}.ck.page`, `{creator}.kit.com`, `app.kit.com/{username}`, and custom domains.

This actor is **URL-driven** — you supply the landing page or profile URLs you want to scrape, and it returns structured data for each page. No login or API key is required.

---

### What It Does

- Scrapes publicly accessible ConvertKit / Kit landing pages
- Extracts creator name, tagline, description, avatar, CTA text, and social links
- Detects the page type (email signup, course, link page, product)
- Fetches creator profiles from `app.kit.com/{username}` or `{subdomain}.kit.com/`
- Works with all Kit URL formats including custom domains

---

### Input

| Field | Type | Description |
|-------|------|-------------|
| `mode` | select | `getLandingPages` — scrape landing pages from URLs; `getCreatorProfile` — fetch creator profiles |
| `startUrls` | list | Landing page or profile URLs to scrape (strings or `{"url": "..."}` objects) |
| `usernames` | list | Kit usernames for `getCreatorProfile` mode (e.g. `["nathanbarry"]`) |
| `maxItems` | integer | Maximum records to return (1–5000, default 50) |

#### Example Input

```json
{
  "mode": "getLandingPages",
  "startUrls": [
    "https://nathanbarry.ck.page/",
    "https://creator.kit.com/"
  ],
  "maxItems": 10
}
````

***

### Output

#### Landing Page Record

| Field | Type | Description |
|-------|------|-------------|
| `url` | string | The scraped URL |
| `creatorName` | string | Creator or brand name |
| `tagline` | string | Short tagline from meta tags |
| `description` | string | Longer description from JSON-LD or page body |
| `formType` | string | Page type: `email_signup`, `link_page`, `course`, `product` |
| `ctaText` | string | Primary call-to-action button text |
| `avatarUrl` | string | Creator avatar / profile photo URL |
| `socialLinks` | object | Social media URLs (twitter, instagram, youtube, linkedin, etc.) |
| `tags` | list | Tags/categories from meta keywords |
| `platform` | string | `convertkit` or `kit` |
| `recordType` | string | Always `landing_page` |
| `scrapedAt` | string | ISO 8601 timestamp |

#### Creator Profile Record

| Field | Type | Description |
|-------|------|-------------|
| `username` | string | Kit/ConvertKit username |
| `displayName` | string | Creator display name |
| `bio` | string | Creator bio or description |
| `avatarUrl` | string | Profile photo URL |
| `profileUrl` | string | Full profile URL |
| `socialLinks` | object | Social media links |
| `recordType` | string | Always `creator_profile` |
| `scrapedAt` | string | ISO 8601 timestamp |

#### Example Output

```json
{
  "url": "https://nathanbarry.ck.page/",
  "creatorName": "Nathan Barry",
  "tagline": "Building an audience and business online",
  "formType": "email_signup",
  "ctaText": "Subscribe",
  "avatarUrl": "https://...",
  "socialLinks": {
    "twitter": "https://twitter.com/nathanbarry",
    "website": "https://nathanbarry.com"
  },
  "platform": "convertkit",
  "recordType": "landing_page",
  "scrapedAt": "2026-05-17T10:00:00+00:00"
}
```

***

### FAQ

**Q: What is Kit / ConvertKit?**
ConvertKit rebranded to **Kit** in 2024. The actor supports both the old (`ck.page`) and new (`kit.com`) URL formats. Landing pages on both platforms are publicly accessible without a login.

**Q: Can I scrape any creator's landing page?**
Yes — any URL that is publicly accessible without a login can be scraped. The actor does not support scraping private or password-protected pages.

**Q: What URL formats are supported?**
All of these work:

- `https://{creator}.ck.page/` (classic ConvertKit format)
- `https://{creator}.kit.com/` (new Kit subdomain format)
- `https://app.kit.com/{username}` (Kit creator profile)
- Custom domain landing pages (e.g. `https://newsletter.mybrand.com/`)

**Q: Is there a public ConvertKit creator directory?**
There is no public directory of all creators — Kit does not publish one. You need to supply the specific landing page URLs you want to scrape. The actor is URL-driven.

**Q: Will the actor work without a proxy?**
Yes. Kit landing pages are publicly accessible from standard datacenter IPs. Proxies are not required for typical usage.

**Q: What is the `formType` field?**
The actor heuristically detects the landing page type based on content. Values: `email_signup` (newsletter/subscription form), `link_page` (link-in-bio style), `course` (educational content), `product` (paid offer or checkout).

**Q: Why are some fields missing in the output?**
The actor only includes fields that can be reliably populated from the public page. Empty or null fields are omitted from output. Some landing pages have minimal metadata.

***

### Limitations

- Only **publicly accessible** landing pages are supported — login-required pages return no data.
- This actor is **URL-driven**: there is no public ConvertKit/Kit creator directory to discover creators from. Supply the URLs directly.
- The actor detects social links from `<a href>` tags — private social accounts or obfuscated links may not be detected.
- Kit / ConvertKit may update their page structure; the actor may need updates if the HTML structure changes significantly.
- Rate limiting: a small delay is applied between requests to avoid overloading the platform. Scraping thousands of pages sequentially will take some time.

# Actor input Schema

## `mode` (type: `string`):

Choose what to scrape: landing pages from provided URLs, or creator profiles by username.

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

List of ConvertKit / Kit landing page URLs to scrape. Supports ck.page, kit.com subdomains, and custom domains. Each entry can be a plain URL string or an object with a 'url' key.

## `usernames` (type: `array`):

Kit/ConvertKit usernames to look up profiles for. The actor tries both app.kit.com/{username} and {username}.kit.com/.

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

Maximum number of records to emit.

## Actor input object example

```json
{
  "mode": "getLandingPages",
  "startUrls": [
    "https://nathanbarry.ck.page/"
  ],
  "usernames": [],
  "maxItems": 50
}
```

# Actor output Schema

## `results` (type: `string`):

Dataset containing all scraped ConvertKit / Kit landing pages and creator profiles.

# 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 = {
    "mode": "getLandingPages",
    "startUrls": [
        "https://nathanbarry.ck.page/"
    ],
    "usernames": [],
    "maxItems": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/convertkit-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 = {
    "mode": "getLandingPages",
    "startUrls": ["https://nathanbarry.ck.page/"],
    "usernames": [],
    "maxItems": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/convertkit-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mode": "getLandingPages",
  "startUrls": [
    "https://nathanbarry.ck.page/"
  ],
  "usernames": [],
  "maxItems": 50
}' |
apify call crawlerbros/convertkit-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawlerbros/convertkit-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "ConvertKit / Kit Creator Profiles & Landing Pages Scraper",
        "description": "Scrape public ConvertKit (Kit) creator landing pages and profiles. Extract creator name, bio, CTA text, avatar, social links, form type, and tags from ck.page, kit.com, and custom domain landing pages",
        "version": "1.0",
        "x-build-id": "IrOrSVFRyALP5vMZ0"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~convertkit-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-convertkit-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/crawlerbros~convertkit-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-convertkit-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/crawlerbros~convertkit-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-convertkit-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",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "getLandingPages",
                            "getCreatorProfile"
                        ],
                        "type": "string",
                        "description": "Choose what to scrape: landing pages from provided URLs, or creator profiles by username.",
                        "default": "getLandingPages"
                    },
                    "startUrls": {
                        "title": "Landing page / profile URLs",
                        "type": "array",
                        "description": "List of ConvertKit / Kit landing page URLs to scrape. Supports ck.page, kit.com subdomains, and custom domains. Each entry can be a plain URL string or an object with a 'url' key.",
                        "default": [
                            "https://nathanbarry.ck.page/"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "usernames": {
                        "title": "Kit usernames (mode=getCreatorProfile)",
                        "type": "array",
                        "description": "Kit/ConvertKit usernames to look up profiles for. The actor tries both app.kit.com/{username} and {username}.kit.com/.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of records to emit.",
                        "default": 50
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
