getWithdrawalRequests().
Endpoint
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
filter | string | Yes | Filter expression — must include userAddress=0x.... Optionally add AND chainId=1, AND status=PENDING, etc. |
pageSize | int | No | Results per page (default 20) |
pageToken | string | No | Pagination token from previous response |
Example Request
Response
Response Types
| Field | Type | Description |
|---|---|---|
orderIndex | string | WithdrawQueue order index |
userAddress | address | Address that submitted the order |
vaultAddress | address | BoringVault address |
chainId | int | Chain ID |
offerAmount | string | Vault shares offered (18 decimals, as string) |
wantAsset | address | Token address the user wants to receive |
status | string | Order status (see below) |
createdAt | string | ISO 8601 timestamp of order creation |
fulfilledAt | string? | ISO 8601 timestamp of fulfillment (null if pending) |
Status Values
| Status | Description |
|---|---|
PENDING | Order submitted, awaiting fulfillment by the vault operator |
COMPLETE | Fulfilled — want asset sent to receiver |
PENDING_REFUND | Cancellation in progress — shares being returned |
REFUNDED | Cancelled — shares returned to refund receiver |