Channel, Event and Model

Data such as orderbook, ticker and last transactions are not sent directly after connection or user login is made.

There is a specific channel and event for each process. By subscribing to these channels and events, this data is received.

Once subscribed to a channel, the server sends events to that channel continuously to the client, unless the unsubscribe message is sent.

On the server, the channels generally represent the places where the transaction takes place (orderbook,last transactions, etc.) and the events represent the pair value (such as BTCTRY, ETHTRY, XLMUSDT) where the transaction takes place.

In some exceptional cases, these values ​​may change. For example, to receive ticker data for all pairs, it is necessary to subscribe to the event of the ticker channel.

The server runs on 3 channels;

For use on browsers or platforms where WebSocket is not supported, it is also possible to access data sent via WebSocket with specific endpoints.

Last updated