GET
/
v1
/
account_sv_transaction_history
Get Account’s Strategy Vault Transaction history
curl --request GET \
  --url https://api.orderly.org/v1/account_sv_transaction_history \
  --header 'orderly-account-id: <orderly-account-id>' \
  --header 'orderly-key: <orderly-key>' \
  --header 'orderly-signature: <orderly-signature>'
{
  "success": true,
  "timestamp": 1702989203989,
  "data": {
    "rows": [
      {
        "vault_id": "<string>",
        "created_time": 1734652800000,
        "type": "withdrawal",
        "status": "pending",
        "amount_change": 88.009
      }
    ],
    "meta": {
      "total": 9,
      "records_per_page": 25,
      "current_page": 1
    }
  }
}

Headers

orderly-account-id
string
required
orderly-key
string
required
orderly-signature
string
required

Query Parameters

vault_id
string

if vault_id is empty, it will return all vaults

start_t
string

start time range that you wish to query, noted that the time stamp is a 13-digits timestamp.

end_t
string

end time range that you wish to query, noted that the time stamp is a 13-digits timestamp.

page
string

the page you wish to query.

size
string

Default: 60

Response

200 - application/json

OK

The response is of type object.