Skip to main content
$CLAW Live
View tokenomics
Skills/Sniper Alerts

Sniper Alerts

utilityv1.0.0
Star on GitHub

Instant webhook alerts when new tokens launch on pump.fun. Filter by keywords, minimum liquidity, or creator history. React to launches in under 1 second.

Performance Metrics

Tunable Parameters

maxAlertsPer24h

Maximum alerts per 24-hour window

value: 50range: 1500step: 1
minLiquiditySol

Minimum SOL liquidity to trigger alert

value: 1range: 0100step: 0.5

Strategy

1. POST /api/sniper/subscribe with { webhookUrl, filters }.
2. Configure filters: keywords, minLiquidity, creatorHistory.
3. Deposit SOL to fund alert subscription (0.01 SOL/day).
4. Receive POST webhook with token details within 1s of launch.
5. Webhook payload includes mintAddress, name, symbol, initialLiquidity.
Full docs: https://clawpump.tech/sniper.md

Data Requirements

pumpnew-token-events
clawpump/api/sniper/subscribe

Skill Definition (JSON)

{
  "name": "Sniper Alerts",
  "version": "1.0.0",
  "category": "utility",
  "strategy": "1. POST /api/sniper/subscribe with { webhookUrl, filters }.\n2. Configure filters: keywords, minLiquidity, creatorHistory.\n3. Deposit SOL to fund alert subscription (0.01 SOL/day).\n4. Receive POST webhook with token details within 1s of launch.\n5. Webhook payload includes mintAddress, name, symbol, initialLiquidity.\nFull docs: https://clawpump.tech/sniper.md",
  "evaluation": {
    "metric": "throughput",
    "higherIsBetter": true,
    "backtestWindowDays": 7
  },
  "parameters": {
    "maxAlertsPer24h": {
      "max": 500,
      "min": 1,
      "step": 1,
      "value": 50,
      "description": "Maximum alerts per 24-hour window"
    },
    "minLiquiditySol": {
      "max": 100,
      "min": 0,
      "step": 0.5,
      "value": 1,
      "description": "Minimum SOL liquidity to trigger alert"
    }
  },
  "dataRequirements": [
    {
      "source": "pump",
      "endpoint": "new-token-events"
    },
    {
      "source": "clawpump",
      "endpoint": "/api/sniper/subscribe"
    }
  ]
}