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"
}
]
}
} | 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
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
} | Field | Description |
|---|---|
| Source ID | On-platform identifier for the DEX or launchpad |
| Source Name | Human-friendly name of the source |
| Token Mint | SPL token mint address |
| Mint Authority | SPL token mint authority. Can be null. |
| Freeze Authority | SPL token freeze authority. Can be null. |
| Decimals | Number of decimal places the token supports |
| Token Name | Human-readable name of the new token |
| Token Symbol | Symbol of the new token |
| Token Uri | Uri pointing to the token's metadata |
| Max Supply | Initial maximum token supply |
| Signature | First mint signature |
| Timestamp | Unix timestamp when the token was first seen |
| Slot | Solana block slot in which the mint/listing occurred |
Updated 1 day ago