Tokens Graduating

Realtime notifications when a token has reached a certain market cap

Basic
Premium
Enterprise
Credit Cost

0


Subscribe / Unsubscribe

// Subscribe 
{
  "type": "subscribe",
  "payload": {
    "stream": "tokens-graduating",
    "parameters": {
      // market cap threshold in SOL,
      // as soon as the market cap reaches this threshold a message will be sent
      "market_cap": 50 
    }
  }
}
// Unsubscribe
{
  "type": "unsubscribe",
  "payload": {
    "stream": "tokens-graduating"
  }
}

Incoming message structure

{
    "type": "stream_data",
    "stream": "tokens-graduating",
    "data": {
        "symbol": "nog",
        "name": "nog",
        "mint": "6hNicYmgpd4rJ9kXjhcZBm2hH5PaceGCVK2u8CHapump",
        "decimals": 6,
        "has_metadata_file": true,
        "metadata": "https://ipfs.io/ipfs/bafkreiejqg777q4a6locqqpkdbc5azpuf4dj72p6qlxzwruvrsii7yhbp4",
        "launched_on": "https://pump.fun",
        "risk": {},
        "price_change": {
            "1m": 71.84449630646083,
            "5m": 299.2459167595006,
            "15m": 299.2459167595006,
            "30m": 299.2459167595006,
            "1h": 299.2459167595006,
            "2h": 299.2459167595006,
            "3h": 299.2459167595006,
            "4h": 299.2459167595006,
            "5h": 299.2459167595006,
            "6h": 299.2459167595006,
            "12h": 299.2459167595006,
            "24h": 299.2459167595006
        },
        "pools": [
            {
                "pool_id": "6hNicYmgpd4rJ9kXjhcZBm2hH5PaceGCVK2u8CHapump",
                "mint": "6hNicYmgpd4rJ9kXjhcZBm2hH5PaceGCVK2u8CHapump",
                "market_cap": {
                    "quote": 153.71072455801846,
                    "usd": 22166.129027208826
                },
                "liquidity": {
                    "quote": 140.683307242,
                    "usd": 20287.487091530726
                },
                "price": {
                    "quote": 1.5371072455801845e-7,
                    "usd": 0.000022166129027208826
                },
                "decimals": 6,
                "token_supply": 1000000000,
                "liquidity_pool_burned": 100,
                "market": "pumpfun",
                "quote_token": "So11111111111111111111111111111111111111112",
                "bonding_curve": "Gz44ksbmgQiCUP73zHP7LTzqaC8bgYSGr4kvK51Qosdy",
                "curve_percentage": 77.591275983188,
                "freeze_authority": null,
                "mint_authority": null,
                "deployer": "92sWKebHVSjCN8PvXFV3Zu2ZRQo9Q2BYLqskgHyWhSsX",
                "created_at": 1749786076235
            }
        ]
    },
    "timestamp": 1749786172983
}

Last updated