Post Requests
This page describes posting requests using the WebSocket API.
Request Format
The WebSocket API supports posting requests that you can normally post through the HTTP API. These requests are either info requests or signed actions. For examples of info request payloads, please refer to the Info endpoint section. For examples of signed action payloads, please refer to the Exchange endpoint section.
To send such a payload for either type via the WebSocket API, you must wrap it as such:
Note: The method
and id
fields are mandatory. It is recommended that you use a unique id
for every post request you send in order to track outstanding requests through the channel.
Note: explorer
requests are not supported via WebSocket.
Response Format
The server will respond to post requests with either a success or an error. For errors, a String
is returned mirroring the HTTP status code and description that would have been returned if the request were sent through HTTP.
Examples
Here are a few examples of subscribing to different feeds using the subscription messages:
Sending an L2Book info request:
Sample response:
Sending an order signed action request:
Sample response:
Last updated