Skip to main content
GET
/
api
/
v1
/
execution
/
list
Get Trade History
curl --request GET \
  --url https://api.ekiden.fi/api/v1/execution/list \
  --header 'Authorization: Bearer <token>'
{
  "list": [
    {
      "exec_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "exec_price": "<string>",
      "exec_qty": "<string>",
      "exec_time": "1672531200000",
      "exec_type": "Trade",
      "exec_value": "<string>",
      "fee_rate": "<string>",
      "index_price": "<string>",
      "is_maker": true,
      "leaves_qty": "<string>",
      "mark_price": "<string>",
      "order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "order_price": "<string>",
      "order_qty": "<string>",
      "order_type": "Limit",
      "seq": 1,
      "side": "Sell",
      "sub_account_address": "<string>",
      "symbol": "BTCUSDC",
      "closed_size": "<string>",
      "create_type": "<unknown>",
      "order_link_id": "<unknown>",
      "stop_order_type": "<unknown>"
    }
  ],
  "next_page_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

sub_account_address
string
required
symbol
null | string
Example:

"BTCUSDC"

order_id
null | string<uuid>
order_link_id
null | string
start_time
string<date-time> | null
end_time
string<date-time> | null
limit
integer<int32> | null
Required range: x >= 0
cursor
string | null

Response

200 - application/json

Trade history

Response for trade history queries.

list
object[]
required
next_page_cursor
string | null