UAX
  • Welcome to UAXNETWORK
  • Getting Started
    • Quickstart
    • Why Uaxnetwork?
    • Running A Node
      • Overview
      • Installation
      • Machine ID
      • Staking
      • Node Configuration
      • Start mining
      • Node Troubleshooting
    • JSON-API
      • getBalance
      • getlastBlock
      • Last50Blocks
      • getTotalTransaction
      • GetTransactionDetailsByTxnId
      • getBlockDetailsByHash
      • getBlockDetailsByNumber
      • GetPendingTransaction
      • sendTransaction
      • estimateBandwidth
      • getBlockByHash
      • getBlockByNumber
      • getTransactionByHash
      • GetBalanceAndBandwidth
      • GetTotalAddress
      • AvailableBandwidth
      • UAXNPRICE
    • Consensus Protocol
      • Overview
      • Reward System
    • Artificial Intelligence Smart Integrations (AISI)
  • Links
    • White paper
Powered by GitBook
On this page
  1. Getting Started
  2. JSON-API

GetBalanceAndBandwidth

POST GetBalanceAndBandwidth

curl -X POST http://localhost:8491 \
-H "Content-Type: application/json" \
-d '{
    "jsonrpc": "2.0",
    "method": "uaxn_balance_and_power",                  
    "params": {
        "Address": "D33I9VV501Hg.uaxn"                                         
    },
    "id": 1
}'
{
  "jsonrpc": "2.0",
  "result": {
    "balance": "27782.203663204073",
    "power": "13746.508211135008"
  },
  "id": 1
}%
PreviousgetTransactionByHashNextGetTotalAddress

Last updated 17 days ago