GET
/
api
/
v1
/
wallet
/
balances
curl --request GET \
  --url https://api.enso.finance/api/v1/wallet/balances \
  --header 'Authorization: Bearer <token>'
[
  {
    "token": "<string>",
    "amount": "0x0000000",
    "decimals": 18,
    "price": "0.0"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

chainId
number
default:1

Chain ID of the network to execute the transaction on

eoaAddress
string
default:0x93621DCA56fE26Cdee86e4F6B18E116e9758Ff11
required

Address of the eoa with which to associate the ensoWallet for balances

useEoa
boolean
default:false
required

If true returns balances for the provided eoaAddress, instead of the associated ensoWallet

Response

200 - application/json
token
string
required

The address of the token

amount
string
required

The unformatted balance of the token

Example:

"0x0000000"

decimals
number
required

The unformatted balance of the token

Example:

18

price
string
required

Price of the token in usd

Example:

"0.0"