Pump Pilot is for informational purposes only and is not intended for trading or financial decisions. Crypto markets carry significant risk. Past performance does not guarantee future results. Machine learning predictions can be wrong — always verify manually. Pump Pilot is not responsible for any decisions made using this data.
Live - Monitoring Solana launches 24/7
Pump Pilot app preview

Detects Pumps
Before They Moon

Real-time Solana token intelligence with smart wallet alerts, bundler detection, and coordinated pump tracking. The software built for serious traders.

v No account required
v Alerts in under 30 seconds
v Smart wallets tracked live
v Bundled launches flagged instantly
Membership

Four Tiers. More Data.

Start free, or hold PPC to unlock higher Pump Pilot tiers. Connect your wallet read-only when you want tier verification — we verify your PPC balance and nothing else.

⭐ PREMIUM
Premium
10,000,000
PPC tokens required
1% of total supply
  • Unlimited access to all Pump Pilot features
  • Exclusive access to Search Tokens
  • Exclusive access to run ML alerts on most Solana token launches
Connect Wallet
Pump Pilot preview
✦ ELITE
Elite
5,000,000
PPC tokens required
0.5% of total supply
  • Everything in Member
  • Migration alerts
  • Custom notifications
  • Deep Wallet Intel
Connect Wallet
Member
1,000,000
PPC tokens required
0.1% of total supply
  • Everything in Free
  • Most alerts
  • Alert filters
  • Save tokens
Connect Wallet
Free
0
No PPC required
Open access
  • Wallet Intelligence
  • Coordinated Groups
  • Activity
  • Top Coins
  • Speed tier, including longevity
  • Reviews
Try Web App

PPC trades on pump.fun  ·  Wallet connection is read-only — no transactions are ever signed.

Self-Serve Paths · Honest Live Status
Developer API

Choose a path.
Make the first request. Follow the 402.

Pump Pilot currently supports four developer connection paths: MCP, REST API, a hosted SDK file, and a hosted CLI file. REST, SDK, and CLI data calls use the same pay-per-call 402 flow. Email is optional, not required.

44
ML Features In Training Path
4
Connection Paths Live Today
402
First Unpaid REST Response
$0
Account Or Approval Queue
🤖

MCP Endpoint

POST /mcp

Best for Claude Desktop, Cursor, Copilot-compatible clients, and custom agents. Copy the config block below, initialize once, and call tools directly.

5 tools live endpoint
🔌

REST API

GET /pp/v1/*

Best for bots, dashboards, and signal channels. The first unpaid request returns a real 402 Payment Required response with the current payment instructions.

$0.02–$0.10 per call
📦

Hosted SDK File

GET /sdk/pumppilot.js

The hosted SDK file is live today. Load it directly in the browser or download it for Node. The public npm package is not live yet.

Hosted file live now
🖥

Hosted CLI File

GET /cli/pumppilot.js

Download the single-file Node CLI and run it immediately. It supports payment headers for REST retries, but the global npm package is not live yet.

Hosted file live now

Optional Email

team@pumppilot.club

Self-serve is the default. Email is there for teams, partnerships, or anyone who wants help choosing the right path. It is not required for onboarding.

Optional contact not required

Payment Rails

SOL · USDC-SPL · USDC on Base

Paid REST, SDK, and CLI calls are self-serve: make the first request, read the 402 instructions, pay on the supported rail, then retry with the required header.

Wallet-first no API key
🚨

Alert Feed

GET /pp/v1/alerts

Real-time stream of scored alerts with ML confidence, milestone predictions, and smart wallet presence. Every active signal in one call.

$0.05 per call
🔍

Token Score

GET /pp/v1/score/{mint}

Look up any Solana token by mint address. Get the current score, bundler status, dev sell check, holder/liquidity data, and milestone probabilities from the live scoring stack.

$0.02 per call
🧠

Smart Wallet Oracle

GET /pp/v1/wallets/top

Top ranked wallets by SmartScore, win rate, ROI, early entry %, and age. The same list our backend re-subscribes to every 30 minutes.

$0.10 per call
👁

Coordinated Groups

GET /pp/v1/groups

Detected wallet groups that buy the same tokens together across launches. Veteran/fresh split, conviction scoring, and member wallets.

$0.05 per call
📚

Token Archive

GET /pp/v1/tokens

Historical token data — filter by MC, graduation status, or creator wallet. Power your quantitative research with our scoring archive.

$0.05 per call
How It Works

What the developer does next

1

Choose the path

Use MCP for AI clients, REST for bots and dashboards, or grab the hosted SDK / CLI file if you want code you can run immediately.

2

Make the first request

Send a normal call to a paid REST endpoint. No API key and no manual approval queue are required first.

3

The developer sees the 402

The client gets the 402 Payment Required response. Pump Pilot also sees the incoming request server-side, but no data is returned until the retry includes valid payment proof.

4

Retry and receive data

Pay with SOL or USDC on Solana (X-SOL-PAYMENT) or USDC on Base (X-PAYMENT), then retry the same request.

First REST request
// The developer sees this 402 directly in their client.
// Pump Pilot also sees the incoming request server-side.
const res = await fetch("https://api.pumppilot.club/pp/v1/alerts?limit=1");

if (res.status === 402) {
  const details = await res.json();
  console.log(details.accepts || details);
}

// Retry after payment.
// SOL / USDC-SPL: X-SOL-PAYMENT (+ X-SOL-ASSET)
// Base USDC: X-PAYMENT
MCP: Claude Desktop / Cursor config (claude_desktop_config.json)
// Add to mcpServers in your Claude Desktop or Cursor MCP config:
{
  "mcpServers": {
    "pump-pilot": {
      "url": "https://api.pumppilot.club/mcp",
      "transport": "http"
    }
  }
}

// Current live tools:
// get_alerts · score_token · get_smart_wallets · get_groups · get_tokens
Hosted SDK file
// Browser / hosted file path live now:
// <script src="https://api.pumppilot.club/sdk/pumppilot.js"></script>
// Public npm package is not live yet.

const pp = new PumpPilot();

try {
  const { alerts } = await pp.getAlerts({ limit: 1 });
  console.log(alerts);
} catch (err) {
  if (err.paymentRequired) console.log(err.details.accepts || err.details);
}

// Retry with payment headers after settlement.
const paid = new PumpPilot({
  headers: { "X-SOL-PAYMENT": txSignature, "X-SOL-ASSET": "sol" }
});
Hosted CLI file
# Download the live CLI file once
curl -O https://api.pumppilot.club/cli/pumppilot.js

# First request
node pumppilot.js alerts --limit 1

# Retry after a SOL payment
node pumppilot.js alerts --limit 1 --x-sol-payment <tx_signature> --x-sol-asset sol

# Retry after a Base x402 payment
node pumppilot.js alerts --limit 1 --x-payment <receipt>

Self-serve is the default. Start with REST, copy the MCP config, download the hosted SDK or CLI file, or email the team if you want help.

See first REST request Copy MCP config Get hosted SDK Get CLI file Email team@pumppilot.club
On REST, SDK, and CLI calls, the developer sees the 402 in their client  ·  Pump Pilot sees the same incoming request server-side  ·  Data is returned only after the retry includes valid payment proof
LIVE
🕐NEW TOKEN Detecting launch — score analysis begins T+2min
WHALE BUY 12.4 SOL entered at launch
BUNDLED 6 wallets from same funder detected
PREMIUM ALERT 3/3 criteria — smart wallet + low supply + no bundle
GRADUATED Token hit PumpSwap — GMGN polling active
🚨 DEV SOLD Creator dumped 84% of position
SMART WALLET Tracked wallet entered 3.1 SOL
🕐NEW TOKEN Detecting launch — score analysis begins T+2min
WHALE BUY 12.4 SOL entered at launch
BUNDLED 6 wallets from same funder detected
PREMIUM ALERT 3/3 criteria — smart wallet + low supply + no bundle
GRADUATED Token hit PumpSwap — GMGN polling active
🚨 DEV SOLD Creator dumped 84% of position
SMART WALLET Tracked wallet entered 3.1 SOL
12
Scoring Criteria
On-chain signals evaluated per token
<30s
Alert Latency
From launch to your screen
100
Alert Score Threshold
Multi-tier scoring powered by machine learning
24/7
Always On
Dedicated backend never sleeps
Alerts Tab

Verified on-chain data, scored and structured in real time.

Every new token is scored 0 to 100 across 12 on-chain criteria the moment it launches. Score hits 100? You get an alert. Premium alerts (gold border) meet all three elite criteria at once.

  • 100/100 threshold - zero noise, pure signal
  • Premium vs Regular two-tier alert system
  • Bundler badge shows wallet count + funder address
  • Dev sold alert the instant the creator dumps
  • Direct links to GMGN, Axiom, Terminal, and Solscan
  • Save any alert to your personal watchlist
Add to Chrome Try Web App ↗
Pump Pilot alerts tab preview
What You Get

Instant. Real-time data straight from the blockchain.

Six purpose-built modules in a compact side panel. Hold PPC tokens to unlock everything.

🚨

Score-Based Alerts

Every new token scored 0-100 across 12 on-chain criteria: volume velocity, buy/sell ratio, bonding curve momentum, unique buyers, smart wallet overlap, and creator track record.

12 scoring criteria
🕵️

Bundler Detection

Detects coordinated launch attacks by analyzing shared funding wallets and same-block timing. See the funder wallet address and copy it in one click.

Helius-powered
🏆

Top Performers

Daily and weekly peak MC leaderboards, filterable by speed tier. After graduation to PumpSwap, continue tracking to monitor momentum.

Updated every 2 min
🐳

Whale Buy & Sell Alerts

Real-time alerts when wallets move at least 1 SOL into or out of a token and see it on every alert card.

1+ SOL threshold
🤖

ML Score Validation

A neural network trained on historical pump patterns runs alongside the rule-based scorer. Both models must agree before an alert fires — cutting false positives and surfacing plays the rules alone would miss.

Dual-model consensus
📋

Coordinated Group Detection

Identifies groups of wallets that repeatedly buy the same tokens together across launches. Veteran vs fresh wallet split, and group conviction scoring.

Cross-token analysis
The Process

How Pump Pilot Works

A dedicated backend running 24/7 feeding the machine learning brain in real time.

1

Token Launches

PumpPortal and GMGN discovery feeds catch fresh Solana launches as they appear on-chain - often within milliseconds of the first activity.

2

Score and Detect

Backend scores the token at T+2, T+5, T+10, and T+30 minutes. Bundler detection and coordinated wallet checks run in parallel.

3

Alert Fires

Score meets our criteria that range from risky to highest probability. We analyze bundler status, dev buy amount, social links, smart wallets, and other blockchain data.

Pump Pilot preview
Speed Tiers

Track the Rockets

Pump Pilot logs every token's speed milestones automatically so you always know which ones move fastest.

🔥
Flash
Hit $10K market cap
Under 60 seconds
🚀
Rocket
Hit $100K market cap
Under 10 minutes
🌙
Moon
Hit $1M market cap
Under 1 hour
💎
Diamond
Hit $5M market cap
Under 4 hours
FAQ

Common Questions

Is it free?
The majority of our machine learning blockchain analysis is free. Must be a token holder to access our alerts.
How does bundler detection work?
When a token launches, Pump Pilot analyzes the on-chain funding history of the first wallets to buy in. If multiple early buyers share the same funding source, the token is flagged as bundled. The funder address is shown in the alert so you can verify it on-chain.
What triggers an alert?
Each token is scored across multiple on-chain signals. We have several tiers of alerts ranging from high risk, high reward to the highest probabilities.
Does it work when Chrome is closed?
Yes. The backend runs 24/7 independently of your browser and collects data continuously. The extension syncs the moment you open it.