GET
/
sapi
/
v1
/
myTrades
curl --request GET \
  --url https://openapi.odyssey.trade/sapi/v1/myTrades
[
  {
    "symbol": "<string>",
    "id": 123,
    "bidId": 123,
    "askId": 123,
    "price": "<string>",
    "qty": "<string>",
    "time": 123,
    "isBuyer": true,
    "isMaker": true,
    "feeCoin": "<string>",
    "fee": "<string>",
    "bidUserId": 123,
    "askUserId": 123,
    "isSelf": true,
    "side": "BUY"
  }
]

Query Parameters

symbol
string
required

The uppercase symbol name, e.g., BTCUSDT.

limit
integer
required

The maximum number of items that can be returned in the query result. The value must be a positive integer. The default value is 100, maximum value is 1000.

Response

200
application/json
Successful Response

The response is of type object[].