Proposal

Proposal queries a proposal based on proposal id.

GEThttps://tia-rest.nownodes.io/cosmos/group/v1/proposal/{proposal_id}
Path parameters
proposal_id*string (uint64)

proposal_id is the unique ID of a proposal.

Response

A successful response.

Body
proposalobject

proposal is the proposal info.

Request
const response = await fetch('https://tia-rest.nownodes.io/cosmos/group/v1/proposal/{proposal_id}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "proposal": {
    "id": "text",
    "group_policy_address": "text",
    "metadata": "text",
    "proposers": [
      "text"
    ],
    "submit_time": "2024-12-22T01:50:02.817Z",
    "group_version": "text",
    "group_policy_version": "text",
    "status": "PROPOSAL_STATUS_UNSPECIFIED",
    "final_tally_result": {
      "yes_count": "text",
      "abstain_count": "text",
      "no_count": "text",
      "no_with_veto_count": "text"
    },
    "voting_period_end": "2024-12-22T01:50:02.817Z",
    "executor_result": "PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED",
    "messages": [
      {
        "type_url": "text",
        "value": "Ynl0ZXM="
      }
    ],
    "title": "text",
    "summary": "text"
  }
}