GetAccountNet

Query bandwidth information.

Return value:Bandwidth information for the account.

Body params:

  • address - Account address, converted to a hex string.

  • visible - Optional,whether the address is in base58 format

Request

curl --request POST \
     --url https://tron.api.watchdata.io/wallet/getaccountnet \
     --header 'Accept: application/json' \
     --header 'Content-Type: application/json' \
     --data '
{
     "address": "4112E621D5577311998708F4D7B9F71F86DAE138B5"
}
'

Response

{
  "freeNetLimit": 1500,
  "assetNetUsed": [
    {
      "key": "1000973",
      "value": 0
    },
    {
      "key": "1001164",
      "value": 0
    }
  ],
  "assetNetLimit": [
    {
      "key": "1000973",
      "value": 0
    },
    {
      "key": "1001164",
      "value": 1000
    }
  ],
  "TotalNetLimit": 43200000000,
  "TotalNetWeight": 51782429521
}

Last updated