ConvertKit / Kit Creator Profiles & Landing Pages Scraper
Pricing
from $3.00 / 1,000 results
ConvertKit / Kit Creator Profiles & Landing Pages Scraper
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
Pricing
from $3.00 / 1,000 results
Rating
5.0
(7)
Developer
Crawler Bros
Maintained by CommunityActor stats
7
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
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
{"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
{"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.