Skip to main content
GET
/
api
/
balances
/
{address}
Get balances for native + selected token assets
curl --request GET \
  --url https://api.walletsuite.io/api/balances/{address} \
  --header 'x-api-key: <api-key>'
{
  "ok": true,
  "code": "<string>",
  "message": "<string>",
  "data": {
    "chain": "<string>",
    "address": "<string>",
    "fiatCurrency": "<string>",
    "totalFiatValue": 123,
    "assets": [
      {
        "symbol": "<string>",
        "decimals": 123,
        "smallestUnit": 123,
        "amount": 123,
        "fiatCurrency": "<string>",
        "tokenContract": "<string>",
        "fiatValue": 123
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

API key provided by WalletSuite team

Path Parameters

address
string
required

Address on the specified chain

Query Parameters

chain
string
default:ethereum

Blockchain identifier

fiat
string
default:USD

Fiat currency for valuation

assetIds
string[]

Optional list of token contract ids to include. If empty, defaults are used.

includeNative
boolean
default:true

Include native balance in response

Response

200 - */*

OK

ok
boolean
required
code
string
required
message
string
required
data
object