Skip to main content
GET
/
api
/
v1
/
vault-v2
/
withdrawals
/
user
/
{user_id}
[
  {
    "assets": "750.25",
    "block_number": "18500000",
    "block_timestamp": "1672531200",
    "chain_id": 1,
    "id": "withdraw_123",
    "log_index": 15,
    "on_behalf": "0x1234567890abcdef",
    "receiver": "0xreceiver1234567890",
    "sender": "0xabcdef1234567890",
    "shares": "748.75",
    "transaction_hash": "0x9876543210fedcba",
    "user_id": "user_456",
    "vault_id": "vault_789"
  }
]

Path Parameters

user_id
string
required

User ID

Query Parameters

limit
integer | null

Limit number of results

Response

User VaultV2 withdrawals retrieved successfully

assets
string
required

Amount of assets withdrawn

Example:

"750.25"

block_number
string
required

Block number when withdrawal occurred

Example:

"18500000"

block_timestamp
string
required

Block timestamp when withdrawal occurred

Example:

"1672531200"

chain_id
integer
required

Chain ID

Example:

1

id
string
required

Unique identifier for the withdrawal

Example:

"withdraw_123"

log_index
integer
required

Log index of the withdrawal event

Example:

15

on_behalf
string
required

Address on behalf of whom the withdrawal was made

Example:

"0x1234567890abcdef"

receiver
string
required

Address that received the withdrawn assets

Example:

"0xreceiver1234567890"

sender
string
required

Address of the withdrawal sender

Example:

"0xabcdef1234567890"

shares
string
required

Amount of shares burned for the withdrawal

Example:

"748.75"

transaction_hash
string
required

Transaction hash of the withdrawal

Example:

"0x9876543210fedcba"

user_id
string
required

User ID associated with this withdrawal

Example:

"user_456"

vault_id
string
required

Vault ID associated with this withdrawal

Example:

"vault_789"

I