For the complete documentation index, see llms.txt. This page is also available as Markdown.

WebSocket

WebSocket API

Alcor Exchange using Socket.IO for interact via WebSocket technology.

There are two commands for subscribing to and channel with specific information.

  1. subscribe: Subscribing for an specific room.

  2. unsubscribe: Unsubscribe from sprcific room.

Available rooms, and params that they receive.

  1. deals: chain, market. -> Subscribe to new deals. (first update will be last 200 deals).

  2. ticker: chain, market, resolution. -> Subscribe to chart updates.

  3. account: chain, name. -> Subscribe to account notifications. (only order match for now)

  4. orderbook: chain, side(sell/buy), market(id). -> Subscribe to orderbook updates. (first update is full order book state)

Currect events to receive:

  • match: Account new match

  • orderbook_sell: new orderbook update on sell side

  • orderbook_buy: new orderbook update on sell buy

  • new_deals: update on new deal on specific market

Example of connection:

Last updated