Solana Price API

Solana prices,streamed in real-time.

Sub-second price updates via Server-Sent Events. No polling. No RPC calls. No wasted compute units. Direct from DEX pools and oracle feeds.

prices.ts
import { VenumClient } from '@venumdev/sdk'

const venum = new VenumClient({ apiKey: process.env.VENUM_API_KEY })

for await (const msg of venum.iteratePrices(['SOL', 'BONK', 'JUP'])) {
  if (msg.type === 'price') {
    console.log(`${msg.price.token}: $${msg.price.priceUsd}`)
  }
}

// Typed events, abort signals, auto-reconnect built in.
Polling vs streaming

Most price APIs make you poll.

Every poll is latency, cost, and complexity. Venum pushes instead.

ApproachFreshnessCost
Polling RPC1-5sHigh — every poll is billable
3rd-party price APIs2-30s staleFree tiers slow; fast tiers expensive
Venum SSE StreamsSub-secondIncluded on all tiers
How it works

Server-Sent Events, purpose-built.

Transport

Server-Sent Events

One persistent HTTP connection. Prices pushed as pool state changes. Standard EventSource API that works in every language.

Source

Oracle + DEX Hybrid

Prices derived from Pyth oracle feeds and live DEX pool state. Confidence intervals included. Cross-validated.

Signal

Smart Deduplication

Updates with less than 0.01% price change are suppressed. You get meaningful moves, not noise. 1-10 events per second for active tokens.

Discovery

Pool Discovery Stream

Get notified the moment a new liquidity pool is created on-chain. Detect new Meteora DLMM, Raydium, and PumpSwap pools in real-time.

Built for

Anything that reacts to price.

TRADING BOTS

React instantly

No stale data, no missed opportunities. Stream the tokens your strategy cares about and trigger on deltas.

DASHBOARDS

Show live prices

Portfolio and analytics UIs that do not hammer RPC. One SSE connection per dashboard replaces hundreds of polls per minute.

ALERT BOTS

Telegram, Discord

Price alerts, whale tracking, and new pool notifications from a single persistent stream with zero polling cost.

Real-time prices, zero polling.

Free tier includes realtime price streaming and 60 price lookups/min.