v21

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-2856132182.6 KB
Trade

Get Trade History

Query users' execution records, sorted by execTime in descending order.

get/api/v1/execution/list

Query parameters

sub_account_addressstring required
symbolstring
Example:BTCUSDC
order_idstring uuid
order_link_idstring
start_timestring date-time nullable
end_timestring date-time nullable
limitinteger nullable
cursorstring nullable

Response

Trade history

next_page_cursorstring nullable

Example response

{
  "list": [
    {
      "exec_time": "1672531200000",
      "symbol": "BTCUSDC"
    }
  ]
}