Websocket API
To establish websocket connection use the endpoint wss://trade.finerymarkets.com/ws (or wss://test.finerymarkets.com/ws for test environment)
WS allows binding to incremental data feed
WS allows to execute any REST method with a
request
messageConnection idle timeout is 80 sec.
Maximum 100 connections per IP are allowed.
Connect Websocket
Generate API keys to authenticate websocket connections. To connect a websocket additional headers are required:
EFX-Key
: your public key
EFX-Sign
: content signature. Sign the payload string with your private key using HMAC SHA384.
EFX-Content
: JSON string that contains nonce and timestamp.
Generate a signature to authenticate the websocket connection. Send headers EFX-Key
, EFX-Sign
, and EFX-Content
when connecting websocket (nodejs with CryptoJS lib):
If handshake error occurs when connecting a websocket, check what has been sent in response body. It could be authentication error. See the following pages to handle most common authentication errors:
Connection status
After connection you will receive either...
Or...
While connected you may receive...
Cancel-on-Disconnect
CoD functionality means that all active orders will be cancelled by the Platform if the connection is lost. If multiple connections are used, only those orders will be cancelled, which are placed via the lost connection.
Errors
WS feed updates indicate a failure when a third element of an array is Z
(i.e., failed to subscribe). WS commands bind
and unbind
indicate a failure when a third element of an array is Z
(i.e., failed to subscribe and failed to unsubscribe respectively).
Feeds
To receive market data and other live updates you have to subscribe feeds. There are general steps to work with any feed:
Subscription. To receive data from a channel you have to send a
bind
message firstSnapshot. Upon subscribing to a channel an initial snapshot is sent
Update. After receiving the snapshot, you will receive updates upon any change
Unsubscription. To stop receiving data from a channel you have to send a
unbind
message
Subscribe feed example:
Unsubscribe feed example:
Requests
It is possible to send the same requests as with the REST API. Use "event": "request"
, add "method"
and "content"
filed as in the example below:
Use empty JSON if the are no parameters in the request.
Example: content : {}
Last updated