New Tokens

The New Tokens WebSocket stream emits a real-time event whenever a new SPL token is created, providing its source ID (DEX / launchpad program) and name, token name and token Uri, mint address, mint authority, freeze authority, decimals, max supply, signature, creation timestamp, and slot number.


Filters

Example filter configuration message:

{
    "type": "configure",
    "filters": {
        "newToken": [
            {
                "source": "LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3uj",
                "tokenNameContains": "a"
            }
        ]
    }
} 
FilterDescriptionExample JSON Filter
SourceOnly pools created on specific DEXspAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA
tokenNameContainsFIlter new launches by token name. Supports partial strings.bonk

Response

Example response message:

{
    "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
} 
FieldDescription
Source IDOn-platform identifier for the DEX or launchpad
Source NameHuman-friendly name of the source
Token MintSPL token mint address
Mint AuthoritySPL token mint authority. Can be null.
Freeze AuthoritySPL token freeze authority. Can be null.
DecimalsNumber of decimal places the token supports
Token NameHuman-readable name of the new token
Token SymbolSymbol of the new token
Token UriUri pointing to the token's metadata
Max SupplyInitial maximum token supply
SignatureFirst mint signature
TimestampUnix timestamp when the token was first seen
SlotSolana block slot in which the mint/listing occurred