Stream
Token Prices
Live USD and SOL prices with market cap.
Channel: prices · Event type: price
See also: REST equivalent
Subscribe
Send this message after connecting to wss://api.anaxer.com/v1/stream.
{
"subscribe": "prices",
"filters": {
"sources": ["pump_fun"],
"mints": ["EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm"]
}
}Filters
Optional filters narrow events before they are delivered. The same filters apply to the REST endpoint. 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"] |
| mints | string[] | Filter to one or more token mint addresses. Example: ["EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm"] |
Event payload
Each event is a flat JSON object with a predictable shape.
{
"type": "price",
"source": "pump_fun",
"mint": "So11111111111111111111111111111111111111112",
"price": {
"sol": 1,
"usd": 77.421875
},
"marketCapUsd": 48730000000,
"slot": 309812540,
"timestamp": 1751008872000
}Fields
| Name | Type | Description |
|---|---|---|
| type | string | Always "price". |
| source | string | Venue the price came from. |
| mint | string | Token mint. |
| price | object | { sol, usd } — latest price in each unit. |
| marketCapUsd | number | Market capitalisation in USD. |
| slot | number | Solana slot the event landed in. Use for ordering and gap recovery. |
| timestamp | number | Event time as a Unix epoch millisecond value. |