Ticker
Ticker data
This guide explains how to use the WebSocket API to subscribe to market data updates via the /ticker
channel.
Overview
The WebSocket API allows clients to receive real-time market data updates. Subscribing to the /ticker
channel provides updates for market ticker data, including prices, bids, asks, and quantities.
Channel
/ticker/*
/ticker/*
Subscribe to get ticker data from all active markets.
/ticker/bytradingpair/{market symbol}
/ticker/bytradingpair/{market symbol}
Subscribe to get ticker data from specific markets
Client may be subscribed to many markets at the same time.
Subscription
Market Data Model
When subscribed to the /ticker
channel, the server sends market data updates in the following format:
Content type: application/json
Example message
Field Descriptions
channel
string
The name of the channel (ticker
).
data
array
An array of market data objects.
symbol
string
The trading pair symbol (e.g., AMDIIIAX/EUROe
).
lastPrice
number
The last traded price.
bestBid
number
The best bid price available.
bestBidQuantity
number
Quantity available at the best bid price.
bestAsk
number
The best ask price available.
bestAskQuantity
number
Quantity available at the best ask price.
time
string
Timestamp of the data update (ISO 8601 format).
Last updated