New Tokens

The New Tokens WebSocket stream emits a real-time event whenever a new SPL token is launched or listed on a supported DEX or launchpad, providing its source ID and name, token name and token Uri, mint address, mint authority, freeze authority, decimals, max supply, signature, creation timestamp, and slot number.


Filters

FilterDescriptionExample JSON Filter
SourceOnly pools created on specific DEXspAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA
tokenNameContainsFIlter new launches by token name. Supports partial strings.bonk

Response

FieldDescriptionExample
Source IDOn-platform identifier for the DEX or launchpadpAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA
Source NameHuman-friendly name of the sourcePumpfun
Token MintSPL token mint address7GhNm4xY2Q1kPfNSjH8T1XjU9PcR5nZQb2vW3E6yK4L
Mint AuthoritySPL token mint authorityWLHv2UAZm6z4KyaaELi5pjdbJh6RESMva1Rnn8pJVVh (Optional, can be null)
Freeze AuthoritySPL token freeze authority5aYAWo5ZaH7mWv3Ld1uvCD8ZqvPgDakkzymTQyr2U4T9 (Optional, can be null)
DecimalsNumber of decimal places the token supports8
Token NameHuman-readable name of the new tokenBONK Coin
Token SymbolSymbol of the new tokenBONK
Token UriUri pointing to the token’s metadatahttps://ipfs.io/ipfs/QmUMWQpcqHTHZ8pk9x7qPM8tyHcn6512NzuoxbWwtPGNwx
Max SupplyInitial maximum token supply1,000,000,000
SignatureFirst mint signature5o9xuvkgj3xmmo5kqwKpJVonV4oyWCrQ434k1Y9Ks7wCDAhC5UVvUz5nPmdxGLfstkLFkFT3WrK8D5ETBKPeGwRN
TimestampUnix timestamp when the token was first seen1753141964
SlotSolana block slot in which the mint/listing occurred354877196

Example Filter

{
    "type": "configure",
    "filters": {
        "newToken": [
            {
                "source": "LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj",
                "tokenNameContains": "a"
            }
        ]
    }
} 

Example Result

{
    "sourceId": "LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj",
    "sourceName": "Raydium LaunchLab",
    "tokenMint": "3q3rooTjwgeoyGm1RB8mMn3mExShWrWUVgHcSw48bonk",
    "mintAuthority": "WLHv2UAZm6z4KyaaELi5pjdbJh6RESMva1Rnn8pJVVh",
    "freezeAuthority": null,
    "decimals": 6,
    "tokenName": "just a chill fresh cut slidrzz",
    "tokenSymbol": "slidrzz",
    "tokenUri": "https://ipfs.io/ipfs/QmUMWQpcqHTHZ8pk9x7qPM8tyHcn6512NzuoxbWwtPGNwx",
    "maxSupply": "1000000000.000000",
    "signature": "RjQGB58L4vwMjyFoXGV5V4GTWfdK2CCWtYKxmXQAJ39hojmJdBEeSJg4HtCNeiih86EES18RPKy5sdDr8R226bk",
    "slot": 354876929,
    "timestamp": 1753141855
}