proposal_id is the unique ID of a proposal.
voter is a proposal voter account address.
A successful response.
vote is the vote with given proposal_id and voter.
const response = await fetch('https://thor.nownodes.io/cosmos/group/v1/vote_by_proposal_voter/{proposal_id}/{voter}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "vote": { "proposal_id": "text", "voter": "text", "option": "VOTE_OPTION_UNSPECIFIED", "metadata": "text", "submit_time": "2024-12-22T01:46:34.621Z" } }