Documentation

Build on the narrative launchpad.

Everything you need to scan narratives, score hype, launch tokens on Solana, read the live board, and wire up autonomous agents — explained end to end.

Start here

Overview

Crowpad is a narrative launchpad on Solana. Its edge is speed: an Anthropic-powered AI agent scans the internet for fast-rising hype narratives, scores each one, and lets anyone launch a token around it before the crowd shows up.

Three things happen on Crowpad: the agent scans X, Reddit, Telegram, and the open web to catch narratives early; it scores every narrative and coin with a 1–99 hype index; and anyone can launch a token in one click and track the whole market on a single live board. The goal: turn internet attention into on-chain liquidity for the AI-native internet.

Chain

Solana mainnet — launches and liquidity settle in SOL.

Agent

Anthropic Claude ranks and pressure-tests every narrative.

Custody

Non-custodial. The contract holds the rules, not us.

Markets

150+ live coins, each tagged with its narrative.

Architecture

How it works

Every narrative flows through the same pipeline, whether it is triggered by a human in the console or an autonomous agent over x402.

1 · Scan

The agent crawls X, Reddit, Telegram, and the web continuously.

2 · Cluster

Posts are grouped into emerging narratives by topic.

3 · Rank

Claude scores durability, crowding, and velocity.

4 · Hype

Momentum and turnover blend into a 1–99 score.

5 · Launch

A token is drafted and minted on Solana, liquidity seeded.

The agent

Narrative scanning

Crowpad’s scanner reads social and web sources around the clock, clustering chatter into narratives and tracking how fast each is spreading. You query it for a theme and get back the story, the communities driving it, and the catalysts to watch.

/scan "AI agents"
  sources: x, reddit, telegram, web
  window: 6h

→ narrative: "agent tokens with real revenue"
→ velocity: rising · communities: 3 · hype: 84/100
→ catalysts: 2 launches today, 1 KOL thread

Scanning is free. Every narrative the agent surfaces is attached to the coins on the board that belong to it, so you can jump straight from a story to the markets running on it.

Signals

Hype score

Crowpad assigns a 1–99 hype score to every narrative and coin, blending price momentum, turnover (volume vs. market cap), and how fast the narrative is spreading. The score updates in real time and drives the default sort on the board.

Momentum

24h price change, capped to avoid outliers.

Turnover

Volume relative to market cap — real activity.

Velocity

How fast the narrative is spreading online.

Tiers

Emerging 1–39 · Heating 40–69 · Trending 70–89 · Parabolic 90–99.

For creators

Launching tokens

Turn a narrative into a live Solana token in under a minute. Crowpad drafts a ticker, name, and story, mints the token, and seeds liquidity — you approve from your wallet and stay in control the whole way.

crowpad launch \
  --narrative "cat coins" \
  --chain solana \
  --wallet ~/.config/solana/id.json

→ ticker: $SOLCAT · supply minted · liquidity seeded
→ live on the board · hype 88/100

Launches are non-custodial and settle on Solana. A small launch fee covers minting and liquidity setup; everything else is on-chain and yours.

The board

The hype board

The board is the live view of every Solana market Crowpad tracks — 150+ coins with logos, prices, 24h change, a 7-day sparkline, narrative tag, and hype score, all refreshed in real time. Filter by narrative, search any coin, or sort by hype to see what is rotating right now.

GET /api/markets
→ 150 coins · { symbol, price, change24h,
     marketCap, volume, spark[], narrative, hype }
# auto-refreshes every 45s on the client

For agents

AI agents

For AI agents, Crowpad is a programmable narrative layer. An agent can scan, rank, launch, and rotate, pay fees per action, and run autonomous strategies — no human in the loop, no accounts, no custody.

const signal = await crowpad.scan({ window: "6h" })
const top = (await claude.rank(signal.narratives))[0]

if (top.hype > 70) {
  const token = await crowpad.launch({
    narrative: top.theme,
    chain: "solana",
  }) // agent pays the launch fee via x402
}

Standard

x402 payments

Agents pay launch and action fees using the x402 payment standard. There are no API keys and no accounts — the payment proof is the authorization. This makes Crowpad the first programmable narrative launchpad agents can build into directly.

POST /v1/launch
402 Payment Required
x402: solana; amount=0.5; to=crowpad…; nonce=…

# retry with payment proof header → 200 OK

Reference

API reference

GET /api/markets

List 150+ live coins with narrative tags and hype scores.

GET /api/sol-price

Live SOL spot price and 24h change for the navbar.

POST /v1/scan

Scan sources for narratives. Returns ranked themes.

POST /v1/launch

Launch a token. Returns a tx or 402 for agent payment.

Token

$CROW token

Anyone holding $CROW earns a share of every launch fee, distributed automatically to wallets — no staking, no claim, no signing. Holders also get earlier access to high-hype narratives the agent surfaces.

Help

FAQ

Is Crowpad custodial? No. Launches and liquidity settle on Solana and the contract enforces the rules. Crowpad never holds your keys.

Do I need an account? No. A Solana wallet (or an x402 payment, for agents) is all you need.

Where does the coin data come from? The live board aggregates open Solana-ecosystem market data and refreshes every 45 seconds; narrative tags and hype scores are generated by the Crowpad agent.