Stream
Token Creation
Every new token launch as it happens. Fast mode delivers immediately; set enriched: true for socials after metadata fetch.
Channel: creations · Event type: created
See also: REST equivalent
Subscribe
Send this message after connecting to wss://api.anaxer.com/v1/stream.
{
"subscribe": "creations",
"filters": {
"sources": ["pump_fun"],
"enriched": true,
"excludeMayhem": true
}
}Filters
Optional filters narrow events before they are delivered. Most filters also apply to the REST endpoint; enriched is WebSocket-only. Full sources catalog: Sources.
| Name | Type | Description |
|---|---|---|
| sources | string[] | Filter by venue. Supported: pump_fun, pump_amm, raydium_launchlab, raydium_cpmm, raydium_clmm, raydium_v4, meteora_dbc, meteora_damm_v2, meteora_dlmm, meteora_pools, orca_whirlpool, pancakeswap, bonkfun. Example: ["pump_fun"] |
| enriched | boolean | Creations WebSocket only. Omit or false for fast mode: deliver immediately (socials often null). true waits for off-chain metadata fetch and delivers only after it succeeds, with socials filled when available. Failed or missing metadata never produces an enriched frame. Not available on REST. Example: true |
| excludeMayhem | boolean | When true, drop events where mayhemMode is true. Omit or false to include Mayhem-mode coins. Applies to creations and graduations (WS + REST). Pre-feature REST rows are stored as mayhemMode: false (no backfill), so excludeMayhem will not hide older Mayhem creates. Example: true |
Event payload
Each event is a flat JSON object with a predictable shape.
{
"type": "created",
"source": "pump_fun",
"mint": "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn",
"name": "Pump",
"symbol": "PUMP",
"creator": "7BvK3nF2HxR8mP5qW9tL4sY6jC1dA8eU3gN2fM5A1zXY",
"uri": "https://ipfs.io/ipfs/QmYwAPJzv5CZsnA625s3Xf2nemtYgPpHdWEz79ojWnPbdG",
"mayhemMode": false,
"socials": {
"website": "https://pump.fun",
"twitter": "https://x.com/pumpfun",
"telegram": "https://t.me/pumpfun"
},
"signature": "3Nk7pT2xQeB8mVdR4wLc9fJhY6zS1nGtK5uA3oXvW7qE2mCpH8dRzL4nJb9FgKtR5zXvY2mNc8hAeQ",
"slot": 309812345,
"timestamp": 1751008864000
}Fields
| Name | Type | Description |
|---|---|---|
| type | string | Always "created". |
| source | string | Launch venue, e.g. pump_fun. See Sources. |
| mint | string | Mint address of the new token. |
| name | string | Token name. |
| symbol | string | Token symbol. |
| creator | string | Wallet that created the token. |
| uri | string | null | On-chain metadata URI. May be null on a cache miss. |
| mayhemMode | boolean | True for pump.fun Mayhem-mode launches. |
| socials | object | null | website / twitter / telegram when known — often null in fast (non-enriched) mode. |
| signature | string | Creation transaction signature. |
| slot | number | Solana slot the event landed in. Use for ordering and gap recovery. |
| timestamp | number | Event time as a Unix epoch millisecond value. |