Example Request
{
"type": "get_user_trades",
"params": {
"limit": 10,
"offset": 0,
"order_id": "5b309929-206f-40ec-804d-cbe46e81afc1",
"start_ts": 1746900000,
"end_ts": 1746908400
}
}
limit(optional) — maximum number of trades to return (default 1000)offset(optional) — pagination offset (default 0)order_id(optional) — filter trades by a specific exchange order IDstart_ts(optional) — filter trades from this Unix timestamp (inclusive)end_ts(optional) — filter trades up to this Unix timestamp (inclusive)
Sample Code
# Python (websocket-client)
import json, websocket
API_KEY = "YOUR_API_KEY"
def send(ws, obj): ws.send(json.dumps(obj))
def on_open(ws):
# Authenticate
# https://docs.qfex.com/websocket/channels/trade/authenticate#how-it-works
send(ws, {"type": "auth", "params": { "hmac": { "public_key": "qfex_pub_xxxxx", "nonce": "c0ffee...", "unix_ts": 1760545414, "signature": "5f2e..." }}})
# Request user trades with optional filters
send(ws, {
"type": "get_user_trades",
"params": {
"limit": 10,
"offset": 0,
"start_ts": 1746900000,
"end_ts": 1746908400
}
})
ws = websocket.WebSocketApp(
"wss://trade.qfex.com?api_key=YOUR_API_KEY",
on_open=on_open,
on_message=lambda _, m: print("Message:", m)
)
ws.run_forever()
// Node.js (ws)
import WebSocket from "ws";
const ws = new WebSocket("wss://trade.qfex.com?api_key=YOUR_API_KEY");
const API_KEY = "YOUR_API_KEY";
ws.on("open", () => {
ws.send(JSON.stringify({ type: "auth", params: { api_key: API_KEY } }));
ws.send(
JSON.stringify({
type: "get_user_trades",
params: {
limit: 10,
offset: 0,
start_ts: 1746900000,
end_ts: 1746908400,
},
})
);
});
ws.on("message", (msg) => console.log("Message:", msg.toString()));
// Go (gorilla/websocket)
package main
import (
"log"
"github.com/gorilla/websocket"
)
func mustWriteJSON(c *websocket.Conn, v any) {
if err := c.WriteJSON(v); err != nil { log.Fatal("write:", err) }
}
func main() {
c, _, err := websocket.DefaultDialer.Dial("wss://trade.qfex.com?api_key=YOUR_API_KEY", nil)
if err != nil { log.Fatal("dial:", err) }
defer c.Close()
// Authenticate
mustWriteJSON(c, map[string]any{
"type": "auth",
"params": map[string]any{"hmac": map[string]any{"public_key": "qfex_pub_xxxxx", "nonce": "c0ffee...", "unix_ts": 1760545414, "signature": "5f2e..."}}
})
// Get user trades with optional filters
mustWriteJSON(c, map[string]any{
"type": "get_user_trades",
"params": map[string]any{
"limit": 10,
"offset": 0,
"start_ts": 1746900000,
"end_ts": 1746908400,
},
})
}
// Java (OkHttp WebSocket)
import java.util.concurrent.TimeUnit;
import okhttp3.*;
public class GetUserTradesWs {
public static void main(String[] args) {
OkHttpClient client = new OkHttpClient.Builder()
.pingInterval(20, TimeUnit.SECONDS).build();
Request req = new Request.Builder()
.url("wss://trade.qfex.com?api_key=YOUR_API_KEY").build();
WebSocketListener li = new WebSocketListener() {
@Override public void onOpen(WebSocket ws, Response r) {
ws.send("{\"type\": \"auth\", \"params\": { \"hmac\": { \"public_key\": \"qfex_pub_xxxxx\", \"nonce\": \"c0ffee...\..\", \"unix_ts\": 1760545414, \"signature\": \"5f2e...\" }}}");
ws.send("{\"type\":\"get_user_trades\",\"params\":{\"limit\":10,\"offset\":0,\"start_ts\":1746900000,\"end_ts\":1746908400}}");
}
@Override public void onMessage(WebSocket ws, String text) {
System.out.println(text);
}
};
client.newWebSocket(req, li);
try { Thread.sleep(Long.MAX_VALUE); } catch (InterruptedException ignored) {}
}
}
Example Response
{
"user_trades": [
{
"trade_id": "92adf4db-1e48-40cf-9e2a-b0ecf079a16a",
"symbol": "AAPL-USD",
"price": 200.0,
"quantity": 1.0,
"aggressor_side": "BUY",
"order_id": "5b309929-206f-40ec-804d-cbe46e81afc1",
"client_order_id": "my-client-oid",
"fee": 0.002,
"timestamp": 1746908400
}
],
"count": 1
}
Only executed trades (fills) are returned. Open orders that have not
filled are excluded.