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.

NameTypeDescription
sourcesstring[]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"]
mintsstring[]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

NameTypeDescription
typestringAlways "price".
sourcestringVenue the price came from.
mintstringToken mint.
priceobject{ sol, usd } — latest price in each unit.
marketCapUsdnumberMarket capitalisation in USD.
slotnumberSolana slot the event landed in. Use for ordering and gap recovery.
timestampnumberEvent time as a Unix epoch millisecond value.