GET
/
v1
/
public
/
strategy_vault
/
vault
/
trade_history
Get Strategy Vault Trade History
curl --request GET \
  --url https://api-sv.orderly.org/v1/public/strategy_vault/vault/trade_history
{
  "success": true,
  "timestamp": 1702989203989,
  "data": {
    "meta": {
      "total": 9,
      "records_per_page": 25,
      "current_page": 1
    },
    "rows": [
      {
        "id": 2,
        "symbol": "PERP_BTC_USDC",
        "fee": 0.0001,
        "fee_asset": "USDC",
        "side": "BUY",
        "order_id": 1,
        "executed_price": 123,
        "executed_quantity": 0.05,
        "executed_timestamp": 1567382401000,
        "is_maker": 1,
        "realized_pnl": 0,
        "match_id": 7386297591862811000
      }
    ]
  }
}

Query Parameters

vault_id
string
required
symbol
string

one symbol at a time

sort_by
string

ascending / descending (default)

page
number

the page you wish to query

size
number

the page size you wish to query (max: 500)

Response

200 - application/json

Success

The response is of type object.