Last updated 1 year ago
validator_address defines the validator address to query for.
A successful response.
commission defines the commision the validator received.
const response = await fetch('/cosmos/distribution/v1beta1/validators/{validator_address}/commission', { method: 'GET', headers: {}, }); const data = await response.json();
{ "commission": { "commission": [ { "denom": "text", "amount": "text" } ] } }