Notifications

The Notification Builder lets you create real-time alert streams powered by smart money intelligence. Get notified when top-ranked wallets converge on a token, make whale trades, or trigger sell signals.


What You Can Build

Use CaseSignal TypeExample
Smart money convergence alertsconvergence_p0, convergence_p1"5 top traders bought $TOSHI in 6 hours"
Whale trade notificationswhale_move"Top-50 wallet made a $85K trade"
Sell signal warningssell_signal"3 top wallets sold $TOKEN"
Trader leaderboardsLeaderboard APIRanked wallets by PnL, win rate, score

How It Works

Smart Money Engine
        │
   Monitors top wallets across Base, Ethereum, Solana
        │
   Detects patterns (convergence, whale moves, sells)
        │
   Generates signals matching your config
        │
   ┌────┴────┐
   │         │
  Poll    Webhook
  GET /notifications    POST to your URL
  1. Configure — set which signal types, chains, quality gates, and delivery preferences you want
  2. Receive — poll GET /notifications every 10-30s, or set up a webhook for push delivery
  3. Act — each signal includes a cta (call-to-action) with token address and chain for deep-linking to swap UIs

Console Notification Builder

The Console Notification Builder lets you:

  • Select signal types — convergence (P0/P1), whale moves, sell signals
  • Choose chains — Base, Ethereum, Solana
  • Set quality gates — minimum trader score, win rate, token liquidity
  • Configure delivery — daily budget, per-type limits, cooldown between duplicates
  • Set webhook — receive signals via POST to your endpoint

Key Concepts

Trader Score

Wallets are ranked by a composite metric:

ComponentWeightWhat it measures
PnL efficiency40%Net PnL / buy volume
Win rate30%Bayesian-smoothed from closed positions
Consistency20%Number of closed positions
Activity10%Log-normalized trade count

Signal Priority

PriorityTypeTrigger
P0 (highest)convergence_p05+ top wallets bought the same token
P1convergence_p13-4 top wallets bought the same token
P1whale_moveTop-50 wallet trade exceeding threshold
P2sell_signalMultiple top wallets selling the same token

Budget & Cooldown

  • Daily budget — max notifications per day (default: 15-30)
  • Per-type limits — caps per signal type
  • Cooldown — minimum hours between duplicate signals for the same token (default: 2h)

Quick Start

1. Check your config

curl https://api.mbd.xyz/v3/alpha/config \
  -H "Authorization: Bearer mbd-YOUR_KEY"

2. Poll for signals

curl "https://api.mbd.xyz/v3/alpha/notifications?since=2026-03-24T00:00:00Z&limit=10" \
  -H "Authorization: Bearer mbd-YOUR_KEY"

3. View the leaderboard

curl "https://api.mbd.xyz/v3/alpha/leaderboard?chain=base&limit=10" \
  -H "Authorization: Bearer mbd-YOUR_KEY"

What's Next