POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
getbrokerage
wallet/getbrokerage
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getbrokerage \
  --header 'Content-Type: application/json' \
  --data '{
  "address": "41928c9af0651632157ef27a2cf17ca72c575a4d21"
}'
{
  "brokerage": 20
}
TRON API method that retrieves the current brokerage percentage for witness rewards. Witnesses can set a brokerage rate to share their block production rewards with voters who support them.
Get you own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • address — hexadecimal address of the witness whose brokerage rate you want to query

Response

  • brokerage — the current brokerage percentage (0-100) set by the witness for reward sharing

Use case

The wallet/getbrokerage method is used for:
  • Checking the current reward sharing rate of a witness before voting.
  • Comparing brokerage rates between different witnesses to maximize voting rewards.
  • Monitoring changes in witness brokerage policies over time.
  • Building witness comparison tools and voting recommendation systems.
Brokerage rates can range from 0% to 100%. A rate of 20% means the witness keeps 20% of block rewards and distributes 80% to their voters. Lower brokerage rates generally mean higher rewards for voters.

Body

application/json

Response

200 - application/json

Brokerage percentage for witness rewards

The response is of type object.