Mini Ticker Stream
Update Speed
Subscribe Request
interface SubscribeRequest {
op: "subscribe";
id: number | null; // Optional client originated request identifier sent as acknowledgment in the response.
params: WsMiniTickerSubscriptionParams;
}interface SubscriptionResult {
op: "subscribe";
id: number | null; // Optional client originated request identifier sent as acknowledgment in the response.
result: WsMiniTickerSubscriptionResult | null;
success: boolean; // Indicates if the request was successfully processed by the engine.
connID: string;
error: string | null; // Condition: If success is false. Error message.
time_in: number; // The timestamp when the subscription was received on the wire, just prior to parsing data, in milliseconds.
time_out: number; // The timestamp when the acknowledgement was sent on the wire, just prior to transmitting data, in milliseconds.
}Unsubscribe Request
Snapshot / Update Response
Last updated