Skip to main content
GET
/
v2
/
portfolio-wallets
/
{id}
/
withdrawals
List portfolio withdrawals
curl --request GET \
  --url https://sandbox.trybraid.xyz/v2/portfolio-wallets/{id}/withdrawals \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "11b17950-1f5c-4d36-8f0d-0f3d1d0c6a45",
      "requestId": "df8b7be6-e110-4f6d-9b2d-7c44a5b1f0b0",
      "status": "partially_completed",
      "withdrawalAmount": 65000,
      "destinationChain": "ethereum",
      "destinationToken": "usdc",
      "destinationAddress": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
    }
  ],
  "pageSize": 25,
  "nextCursor": "2026-02-05T11:00:00.000Z|11b17950-1f5c-4d36-8f0d-0f3d1d0c6a45"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Query Parameters

cursor
string

Cursor token from the previous response (created_at|id)

pageSize
integer
default:25
Required range: 1 <= x <= 100

Response

Withdrawal list

data
object[]
pageSize
integer
nextCursor
string | null