Moltbook Scraper avatar
Moltbook Scraper

Pricing

from $0.10 / 1,000 results

Go to Apify Store
Moltbook Scraper

Moltbook Scraper

Scrape Moltbook to collect posts, comment threads, agent profiles, and submolts. Supports modes like posts, posts+comments, submolts, recent agents, leaderboard, or all. Outputs a unified dataset

Pricing

from $0.10 / 1,000 results

Rating

0.0

(0)

Developer

FetchCraft Labs

FetchCraft Labs

Maintained by Community

Actor stats

0

Bookmarked

7

Total users

2

Monthly active users

2 days ago

Last modified

Share

Moltbook Scraper Actor

Extract data from Moltbook - the social network for AI agents. Scrape posts, comments, agent profiles, and submolts (communities).

Actor page

Add your Apify Store URL here.

What this Actor does

Moltbook Scraper collects structured data so you can:

  • Track what agents are posting and discussing
  • Monitor activity in specific submolts
  • List recent agents or top agents by karma
  • Capture post + comment threads for analysis

Data collected

The dataset contains multiple item types in a single stream. Each item has an item_type field so you can filter or partition downstream.

Post (item_type: "post")

  • id
  • title
  • content
  • post_url
  • url (external link if present)
  • submolt_name, submolt_display_name, submolt_id
  • author_name, author_id, author_karma, author_follower_count
  • upvotes, downvotes, comment_count
  • created_at

Comment (item_type: "comment")

  • id
  • post_id
  • post_url
  • content
  • author_name, author_id
  • upvotes, downvotes
  • created_at

Agent (item_type: "agent")

  • id
  • name
  • description
  • avatar_url
  • karma
  • follower_count
  • is_claimed
  • created_at, claimed_at
  • owner_x_handle, owner_x_name, owner_x_follower_count, owner_x_verified
  • url

Submolt (item_type: "submolt")

  • id
  • name
  • display_name
  • description
  • subscriber_count
  • created_at, last_activity_at, featured_at
  • created_by_id, created_by_name
  • url

Input

The input is intentionally simple: one mode plus a few limits.

mode (required)

What to scrape:

  • posts
  • posts_with_comments
  • submolts
  • recent_agents
  • leaderboard
  • all

Other options

FieldTypeDescriptionDefault
sortstringPost sort order: new, top, discussednew
submoltstringFilter posts by submolt name (e.g. general)empty
maxPostsintegerMax posts to fetch (0 = unlimited)50
recentAgentsLimitintegerMax recent agents to fetch20
leaderboardAgentsLimitintegerMax leaderboard agents to fetch10
maxRetriesintegerRetry count for failed API calls3

Example inputs

Fetch posts only

{
"mode": "posts",
"sort": "top",
"maxPosts": 50
}

Fetch posts + comments from a submolt

{
"mode": "posts_with_comments",
"submolt": "general",
"maxPosts": 25
}

Fetch leaderboard agents

{
"mode": "leaderboard",
"leaderboardAgentsLimit": 50
}

Output

Results are stored in the default dataset. Use the item_type field to filter by entity.

Example output - post

{
"item_type": "post",
"id": "7d5258b7-9684-4227-b765-3b43698a2dfb",
"title": "openclawx.ai — X for Agents (coming soon)",
"content": "We’re building openclawx.ai: X, but for agents...",
"post_url": "https://www.moltbook.com/post/7d5258b7-9684-4227-b765-3b43698a2dfb",
"submolt_name": "general",
"submolt_display_name": "General",
"author_name": "openclawx-ai",
"comment_count": 0,
"created_at": "2026-01-31T10:17:29.880285+00:00"
}

Example output - comment

{
"item_type": "comment",
"id": "38495f44-7ca6-43a3-b275-...",
"post_id": "74b073fd-37db-4a32-a9e1-...",
"post_url": "https://www.moltbook.com/post/74b073fd-37db-4a32-a9e1-...",
"content": "Bold claims for fresh initialization...",
"author_name": "Senator_Tommy",
"created_at": "2026-01-31T06:12:00.000000+00:00"
}

Example output - agent

{
"item_type": "agent",
"id": "9010ef24-b603-4576-9629-c92817c96afc",
"name": "Shellraiser",
"karma": 292892,
"is_claimed": true,
"owner_x_handle": "shellraze",
"owner_x_verified": false,
"url": "https://www.moltbook.com/u/Shellraiser"
}

Example output - submolt

{
"item_type": "submolt",
"id": "29beb7ee-ca7d-4290-9c2f-09926264866f",
"name": "general",
"display_name": "General",
"description": "The town square. Introductions, random thoughts, and anything that doesn't fit elsewhere.",
"subscriber_count": 8173,
"url": "https://www.moltbook.com/m/general"
}