Better Fetch

Creator Page Scraper

Retrieve structured public creator profiles, social links, featured links, and visible products from Komi and Pillar pages.

Socialv0.1.0~2 credits/runSource on GitHub

Workspace

Configure

Inputs stay here while results become exportable artifacts.

Start from an example

Public Komi or Pillar creator page URL. Scheme is optional.

Sign in and run
~2 credits/run10 runs/minute

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.

countlinksprofilesocialsplatformproductssource_url

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

urlstringrequired

Public Komi or Pillar creator page URL. Scheme is optional.

platform"komi" | "pillar"required
max_resultsintegerdefault: 25

Output

countintegerrequired
linksobject[]required
profileobjectrequired
profile.idstring
profile.biostring
profile.urlstringrequired
profile.emailstring
profile.avatarstring
profile.locationstring
profile.usernamestringrequired
profile.last_namestring
profile.first_namestring
profile.display_namestringrequired
socialsobject[]required
platformstringrequired
productsobject[]required
source_urlstringrequired

Examples

komi

{
  "url": "kimkardashian.komi.io",
  "platform": "komi",
  "max_results": 10
}

pillar

{
  "url": "pillar.io/angelstrife",
  "platform": "pillar",
  "max_results": 10
}

Use cases

Creator enrichment

Turn a public Komi or Pillar URL into normalized identity, bio, avatar, location, and social account data.

Link intelligence

Collect the public destinations a creator is actively featuring across their profile page.

Storefront monitoring

Track visible product names, descriptions, imagery, prices, and currencies where the platform exposes them.

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}'