Skip to main content
GET
/
v2
/
billing
/
balance
Get Balance
curl --request GET \
  --url https://api.tusky.io/v2/billing/balance
{
  "sui": "<string>",
  "wal": "<string>",
  "managedWalletAddress": "<string>"
}
Retrieve the current prepaid wallet balance.

Response

sui
string
SUI token balance.
wal
string
WAL token balance.
managedWalletAddress
string
The Sui address of your managed wallet.

Example

curl https://api.tusky.io/v2/billing/balance \
  -H "Api-Key: YOUR_API_KEY"

Response

{
  "sui": "45.2",
  "wal": "120.0",
  "managedWalletAddress": "0x1a2b3c4d5e6f7890abcdef1234567890abcdef12"
}