Get Wallet Assets

GET /wallets/{walletId}/assets

Retrieves a list of assets owned by the specified Wallet.

Required Permissions

NameConditions

Wallets:Read

Always Required

Parameters

Path parameters

Path parameterDescription

walletId

Unique identifier of the Wallet. ex. wa-1f04s-lqc9q-xxxxxxxxxxxxxxxx

Response

200 Response example

verified contracts have been certified authentic by CoinMarketCap.

{
  "walletId": "wa-1f04s-lqc9q-xxxxxxxxxxxxxxxx",
  "network": "EthereumSepolia",
  "assets": [
    {
      "symbol": "SepoliaETH",
      "decimals": 18,
      "balance": "1000000000000000000"
    },
    {
      "contract": "0x6f14c02fc1f78322cfd7d707ab90f18bad3b54f5",
      "name": "USDC Token",
      "symbol": "USDC",
      "decimals": 18,
      "balance": "100000000000000000000",
      "verified": true
    },
    {
      "contract": "0x779877a7b0d9e8603169ddbd7836e478b4624789",
      "name": "ChainLink Token",
      "symbol": "LINK",
      "decimals": 18,
      "balance": "20000000000000000000",
      "verified": true
    }
  ]
}

Last updated