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": "Ethereum",
  "assets": [
    {
      "symbol": "ETH",
      "decimals": 18,
      "balance": "1000000000000000000",
      "verified": true
    },
    {
      "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
      "name": "USD Coin",
      "symbol": "USDC",
      "decimals": 6,
      "balance": "100000000000000000000",
      "verified": true
    },
    {
      "contract": "0x514910771af9ca656af840dff83e8264ecf986ca",
      "name": "Chainlink Token",
      "symbol": "LINK",
      "decimals": 18,
      "balance": "20000000000000000000",
      "verified": true
    }
  ]
}

Last updated