GET
/
v1
/
public
/
strategy_vault
/
vault
/
order_history
curl --request GET \
  --url https://api-sv.orderly.org/v1/public/strategy_vault/vault/order_history
{
  "success": true,
  "timestamp": 1702989203989,
  "data": {
    "meta": {
      "total": 9,
      "records_per_page": 25,
      "current_page": 1
    },
    "rows": [
      {
        "order_id": 78151,
        "created_time": 1653563963000,
        "updated_time": 1653564213000,
        "type": "LIMIT",
        "symbol": "PERP_WOO_USDC",
        "side": "BUY",
        "quantity": 20,
        "price": 0.67772,
        "amount": 10,
        "executed_quantity": 20,
        "total_executed_quantity": 20,
        "average_executed_price": 0.67772,
        "status": "NEW",
        "is_triggered": false,
        "child_orders": [
          {}
        ]
      }
    ]
  }
}

Query Parameters

vault_id
string
required
symbol
string

one symbol at a time

sort_by
string

ascending / descending (default) on updated_time

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.