Skip to main content
GET
/
v2
/
portfolio-wallets
/
{id}
/
deposits
/
{depositId}
Get portfolio deposit
curl --request GET \
  --url https://sandbox.trybraid.xyz/v2/portfolio-wallets/{id}/deposits/{depositId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "2a3ad0af-11b3-41d5-96c5-2b9d8799f1e2",
  "portfolioWalletId": "9d1a1c83-3a1c-4c14-9c5a-0c9a57a4a7db",
  "chain": "ethereum",
  "token": "usdc",
  "amount": 50000,
  "status": "processing",
  "createdAt": "2026-02-05T09:45:00.000Z"
}

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
depositId
string<uuid>
required

Response

Deposit detail

id
string<uuid>
required
portfolioWalletId
string<uuid>
required
status
enum<string>
required
Available options:
processing,
completed,
failed
chain
string
required
token
string
required
amount
number<double>
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
failureReason
string | null
txHash
string | null
completedAt
string<date-time> | null
legStatuses
object