Skip to main content
GET
/
wallets
/
{wallet}
/
balance
Get wallet balance
curl --request GET \
  --url https://api.wavynode.com/v1/wallets/{wallet}/balance \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "total_balance": 123,
    "assets": [
      {}
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.wavynode.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Enter the full value with the ApiKey prefix. Example: ApiKey wavy_your-api-key. The prefix is required for authentication.

Path Parameters

wallet
string
required

The EVM wallet address to query

Query Parameters

chainId
integer
required

The chain ID to perform the query on

Response

200 - application/json

Wallet balance

success
boolean
data
object