Skip to main content
GET
/
v2
/
portfolio-wallets
/
{id}
/
deposits
List portfolio deposits
curl --request GET \
  --url https://sandbox.trybraid.xyz/v2/portfolio-wallets/{id}/deposits \
  --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "5e4d6b61-b6a4-4f22-8b89-ccdf1c3c2a11", "portfolioWalletId": "9d1a1c83-3a1c-4c14-9c5a-0c9a57a4a7db", "chain": "ethereum", "token": "usdc", "amount": 85000, "status": "completed", "createdAt": "2026-02-05T07:20:00.000Z" } ], "pageSize": 25, "nextCursor": null }

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

Deposit list

data
object[]
pageSize
integer
nextCursor
string | null