v1

latestOpenAPI 3.0.32026-07-2485236250.4 KB
Wallets

Get wallet

Retrieves user wallet along with its balances. By wallet this API suggests a valid Account Abstraction wallet that was linked during the registration.

get/api/v1/wallet

Query parameters

wallet_addressstring

Wallet address

Response

OK

chain_familystring

Chain family of this wallet address, if the wallet address belongs to a non-EVM family

wallet_addressstring required

Address of this wallet

wallet_namestring

Display name of this wallet to help user identify it

wallet_status'Unknown' | 'Confirmed' | 'Rejected'
wallet_type'Primary' | 'Secondary' | 'Global' | 'Card'

Example response

{
  "balances": [
    {
      "balance": 100.00056,
      "reference_balance": 100.00056,
      "reference_currency": "USD",
      "token_address": "0x6b175474e89094c44da98b954eedeac495271d0f",
      "token_symbol": "USDT"
    }
  ],
  "chain_family": "solana",
  "wallet_address": "0xA7E41d5680dE394EaA2ed417169DFf56840Fb3EE",
  "wallet_name": "Main Wallet"
}