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

Path Parameters

address
string
required

User wallet address

vault_id
string
required

Vault identifier

Query Parameters

type
string

Transaction type filter

limit
integer<int64>

Number of transactions to return (1-200, default: 50)

cursor
string

Pagination cursor

Response

User transaction history

items
object[]
required
next_cursor
string | null