Skip to main content
GET
/
accounts
/
{accountId}
/
wallets
List wallets for an account
curl --request GET \
  --url https://api.venlyfinance.com/v1/accounts/{accountId}/wallets \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": [
    {
      "id": "9f8e7d6c-5b4a-4938-8271-6a5b4c3d2e1f",
      "chain": "BASE",
      "type": "SELF_CUSTODY",
      "address": "0x71C7656EC7ab88b098defB751B7401B5f6d8976F",
      "balances": [
        {
          "asset": "USDC",
          "contractAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
          "amount": {
            "total": "125.00",
            "available": "100.00",
            "reserved": "25.00"
          }
        }
      ],
      "amlStatus": "APPROVED"
    }
  ],
  "pagination": {
    "pageNumber": 1,
    "pageSize": 20,
    "numberOfElements": 1,
    "numberOfPages": 1,
    "hasNextPage": false,
    "hasPreviousPage": false
  }
}
Returns the account’s wallets, each with its address and per-asset balances. Balance amounts (total, available, reserved) are decimal strings — reserved is the portion held against pending payment requests. Wallet type is VENLY_MANAGED or SELF_CUSTODY (see custody models). Concept guide: Wallets & balances

Authorizations

Path Parameters

accountId
string<uuid>
required

Unique account identifier

Query Parameters

page
integer<int32>
default:1

Page number (1-based indexing)

Required range: x >= 1
size
integer<int32>
default:100

Number of items per page

Required range: x >= 1

Response

List of wallets

success
boolean

Indicates whether the request was successful

result
object[]
pagination
object

Pagination metadata (top-level sibling of result)