Creator Page Scraper
Retrieve structured public creator profiles, social links, featured links, and visible products from Komi and Pillar pages.
Workspace
Configure
Inputs stay here while results become exportable artifacts.
Start from an example
Results
Preview, inspect, copy, or export the complete output.
Your result will become an artifact
Run the tool to inspect structured rows, raw JSON, execution details, and downloadable JSON, CSV, and Markdown files.
Overview
Creator Page Scraper follows the transport each creator platform actually exposes: Komi's public profile and module APIs, and Pillar's rendered public storefront. It normalizes identity, bio, social accounts, featured destinations, and visible commerce data without requiring creator credentials.
Last validated: Jul 15, 2026
Input
urlstringrequiredPublic Komi or Pillar creator page URL. Scheme is optional.
platform"komi" | "pillar"requiredmax_resultsintegerdefault: 25Output
countintegerrequiredlinksobject[]requiredprofileobjectrequiredprofile.idstringprofile.biostringprofile.urlstringrequiredprofile.emailstringprofile.avatarstringprofile.locationstringprofile.usernamestringrequiredprofile.last_namestringprofile.first_namestringprofile.display_namestringrequiredsocialsobject[]requiredplatformstringrequiredproductsobject[]requiredsource_urlstringrequiredExamples
komi
{
"url": "kimkardashian.komi.io",
"platform": "komi",
"max_results": 10
}pillar
{
"url": "pillar.io/angelstrife",
"platform": "pillar",
"max_results": 10
}Use cases
FAQ
Does this require a Komi or Pillar login?
No. It reads only publicly accessible profile and storefront data.
Why do the two platforms use different retrieval strategies?
Komi exposes public JSON resources, while Pillar materializes its useful profile data in the rendered application.
Are hidden products returned?
No. The tool limits its normalized output to content the public page or public platform resources expose.
Use it anywhere
MCP (Claude, ChatGPT, Codex)
# After connecting https://betterfetch.co/api/mcp, ask your AI to:
1. Call search_tools for "Creator Page Scraper"
2. Call run_tool with:
name: "creator_page_scraper"
input: {"url":"kimkardashian.komi.io","platform":"komi","max_results":10}REST
curl -sS -X POST "https://betterfetch.co/api/tools/creator_page_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input": {"url":"kimkardashian.komi.io","platform":"komi","max_results":10}}'Run locally
git clone https://github.com/better-fetch/tools/tree/main/tools/creator-page-scraper && cd creator-page-scraper && npm i
BETTER_FETCH_API_KEY=bf_your_key_here npx bf-tool run --input '{"url":"kimkardashian.komi.io","platform":"komi","max_results":10}'