/cosmos/gov/v1beta1/proposals/{proposal_id}

Proposal queries proposal details based on ProposalID.

Parameters:

proposal_id - string, proposal_id defines the unique id of the proposal.

Example:

// Request
curl -X GET -H 'Content-Type: application/json' https://froopyland.blockpi.network/lcd/v1/<your-api-key>/cosmos/gov/v1beta1/proposals/1

// Result
{
    "proposal": {
        "content": {
            "@type": "/cosmos.params.v1beta1.ParameterChangeProposal",
            "changes": [
                {
                    "key": "EnableCall",
                    "subspace": "evm",
                    "value": "true"
                }
            ],
            "description": "This proposal is for setting the EVM module's enable_call toggle to true enabling evm.Call.",
            "title": "Param update: Set EVM Call to true"
        },
        "deposit_end_time": "2023-09-01T12:08:01.600913105Z",
        "final_tally_result": {
            "abstain": "0",
            "no": "0",
            "no_with_veto": "0",
            "yes": "2902646357780117254332533"
        },
        "proposal_id": "1",
        "status": "PROPOSAL_STATUS_PASSED",
        "submit_time": "2023-08-30T12:08:01.600913105Z",
        "total_deposit": [
            {
                "amount": "100101000000000000000000",
                "denom": "udym"
            }
        ],
        "voting_end_time": "2023-09-01T13:03:08.545822437Z",
        "voting_start_time": "2023-08-30T13:03:08.545822437Z"
    }
}

Last updated