GET
/
users
/
{address}
/
vaults
/
{vault_id}
/
transactions
User transaction history
curl --request GET \
  --url https://0d.finance/api/v1/users/{address}/vaults/{vault_id}/transactions
{
  "items": [
    {
      "id": "<string>",
      "vault_id": "<string>",
      "type": "deposit",
      "status": "pending",
      "amount": "<string>",
      "tx_hash": "<string>",
      "timestamp": "2023-11-07T05:31:56Z"
    }
  ],
  "next_cursor": "<string>"
}

Path Parameters

address
string
required

User wallet address

Minimum length: 1
vault_id
string
required

Stable vault identifier

Minimum length: 1

Query Parameters

type
enum<string>
Available options:
deposit,
withdraw,
fee,
rebalance
limit
integer
default:50
Required range: 1 <= x <= 200
cursor
string

Response

Transactions

The response is of type object.