Collect
Read activity across supported Solana venues and market pairs.
Stream or query normalized trades, blocks, OHLCV, TWAP, VWAP, volume, and token data without building a Solana-specific indexing pipeline.
{
"subscription": "sol_market_01",
"result": {
"updates": [{
"topic": "ohlcv",
"window": "1m",
"close": "185.42",
"volume_usd": "42,761"
}]
}
}Illustrative data. The Playground shows the current response schema.
GetBlock turns fragmented on-chain activity into consistent trading data, so your team can spend its time on execution, analytics, and product logic.
Read activity across supported Solana venues and market pairs.
Unify schemas and calculate consistent market windows.
Push live changes over WebSocket or return them through HTTP.
Market windows update optimistically as new activity arrives. Stable row IDs let clients apply every change deterministically, including the rare correction caused by a chain reorganization.
Learn about change setsReceive a new market row immediately.
Upsert the same ID as its window evolves.
Remove an ID only when a correction requires it.
Select a topic and delivery mode to see the request your application sends. The same API key covers the full product.
Receive open, high, low, close, and volume rows for one of 13 supported windows.
socket.send(JSON.stringify({
jsonrpc: "2.0",
id: 1,
method: "getblock_subscribe",
params: [{
source: "market",
topic: "ohlcv",
params: {
base: "So111...11112",
quote: "EPjFW...TDt1v",
"window": "1m", "hydrate": 10
}
}]
}));Build bots, execution systems, alerts, and trading dashboards on a consistent low-latency feed.
Add normalized Solana market context to applications without operating a venue-by-venue data stack.
Use structured historical windows and live updates as inputs for research, monitoring, and automated decisions.
No fragmented add-ons. Choose a standard monthly plan or shape an enterprise deployment around your workload.
Complete market data access for teams building and validating production integrations.
Predictable market data infrastructure for funds, protocols, exchanges, and higher-scale data products.
从 Playground 迁移到生产集成时需要了解的实用信息。
Open the Playground, choose a market topic, and inspect the data shape your application will receive.