ConvertKit / Kit Creator Profiles & Landing Pages Scraper avatar

ConvertKit / Kit Creator Profiles & Landing Pages Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
ConvertKit / Kit Creator Profiles & Landing Pages Scraper

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

Crawler Bros

Maintained by Community

Actor stats

7

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

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

FieldTypeDescription
modeselectgetLandingPages — scrape landing pages from URLs; getCreatorProfile — fetch creator profiles
startUrlslistLanding page or profile URLs to scrape (strings or {"url": "..."} objects)
usernameslistKit usernames for getCreatorProfile mode (e.g. ["nathanbarry"])
maxItemsintegerMaximum 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

FieldTypeDescription
urlstringThe scraped URL
creatorNamestringCreator or brand name
taglinestringShort tagline from meta tags
descriptionstringLonger description from JSON-LD or page body
formTypestringPage type: email_signup, link_page, course, product
ctaTextstringPrimary call-to-action button text
avatarUrlstringCreator avatar / profile photo URL
socialLinksobjectSocial media URLs (twitter, instagram, youtube, linkedin, etc.)
tagslistTags/categories from meta keywords
platformstringconvertkit or kit
recordTypestringAlways landing_page
scrapedAtstringISO 8601 timestamp

Creator Profile Record

FieldTypeDescription
usernamestringKit/ConvertKit username
displayNamestringCreator display name
biostringCreator bio or description
avatarUrlstringProfile photo URL
profileUrlstringFull profile URL
socialLinksobjectSocial media links
recordTypestringAlways creator_profile
scrapedAtstringISO 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.