proposal_id defines the unique id of the proposal.
A successful response.
TallyResult defines a standard tally for a governance proposal.
const response = await fetch('https://akt.nownodes.io/cosmos/gov/v1beta1/proposals/{proposal_id}/tally', { method: 'GET', headers: {}, }); const data = await response.json();
{ "tally": { "yes": "text", "abstain": "text", "no": "text", "no_with_veto": "text" } }