Order book (Level 2), trades, candles and quotes with minimal latency. Easy integration, stable stream, transparent pricing. Get exchange data via WebSocket, gRPC or REST API.
wss://api.xyte.tech/stream?token=YOUR_KEY
{"op":"subscribe","channels":[{"name":"l2.orderbook","symbol":"SBER"}]}Realtime and historical API: order book (L1/L2), trades, candles. Easy integration and predictable limits. Get market data via WebSocket, gRPC or REST API with minimal latency and high reliability.
Transparent limits. Switch plans at any time.
Install a client and subscribe to the stream in minutes. Repositories will open with the MVP launch.
import { Client } from '@xyte/client'
const c = new Client({ apiKey: process.env.XYTE_KEY })
const sub = c.stream.orderbook({ symbol: 'SBER' })
sub.on('update', (u) => console.log(u))from xyte import Client
c = Client(api_key=XYTE_KEY)
for update in c.stream.orderbook(symbol='SBER'):
print(update)cli := xyte.NewClient(os.Getenv("XYTE_KEY"))
stream := cli.StreamOrderBook("SBER")
for upd := range stream {
log.Println(upd)
}