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
Filter | Description | Example JSON Filter |
---|---|---|
Source | Only pools created on specific DEXs | pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA |
tokenNameContains | FIlter new launches by token name. Supports partial strings. | bonk |
Response
Field | Description | Example |
---|---|---|
Source ID | On-platform identifier for the DEX or launchpad | pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA |
Source Name | Human-friendly name of the source | Pumpfun |
Token Mint | SPL token mint address | 7GhNm4xY2Q1kPfNSjH8T1XjU9PcR5nZQb2vW3E6yK4L |
Mint Authority | SPL token mint authority | WLHv2UAZm6z4KyaaELi5pjdbJh6RESMva1Rnn8pJVVh (Optional, can be null) |
Freeze Authority | SPL token freeze authority | 5aYAWo5ZaH7mWv3Ld1uvCD8ZqvPgDakkzymTQyr2U4T9 (Optional, can be null) |
Decimals | Number of decimal places the token supports | 8 |
Token Name | Human-readable name of the new token | BONK Coin |
Token Symbol | Symbol of the new token | BONK |
Token Uri | Uri pointing to the token’s metadata | https://ipfs.io/ipfs/QmUMWQpcqHTHZ8pk9x7qPM8tyHcn6512NzuoxbWwtPGNwx |
Max Supply | Initial maximum token supply | 1,000,000,000 |
Signature | First mint signature | 5o9xuvkgj3xmmo5kqwKpJVonV4oyWCrQ434k1Y9Ks7wCDAhC5UVvUz5nPmdxGLfstkLFkFT3WrK8D5ETBKPeGwRN |
Timestamp | Unix timestamp when the token was first seen | 1753141964 |
Slot | Solana block slot in which the mint/listing occurred | 354877196 |
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
}
Updated 18 days ago