# Get proposals
- Get proposal information through proposal ID
# Request method
GET
# URL
/server/v1/gov/detail
# Request example
/server/v1/gov/detail?proposal_id=11
# Request parameters
- Not
# Return value
code int64
: 0 or field does not exist is success, others are failuresmessage string
: Response informationproposals array
: Verifier arrayproposal_id string
: Address of verifiercontent object
: Proposal details@type
title
description
changes
status string
: Proposal statusfinal_tally_result object
: Final voting resultyes
:Number of affirmative votesabstain
: Number of abstained votesno
: Number of negative votesno_with_veto
: Number of negative votes to exercise the veto
submit_time string
: Submission timedeposit_end_time string
: Deposit end timetotal_deposit object
: Depositsvoting_start_time string
: Voting start timevoting_end_time string
: Voting end time
# Return to example
{
"proposal": {
"proposal_id": "11",
"content": {
"@type": "/cosmos.params.v1beta1.ParameterChangeProposal",
"title": "Slashing Param Change",
"description": "Adjust the slash_fraction_downtime from 0.001 to 0.0001",
"changes": [
{
"subspace": "slashing",
"key": "SlashFractionDowntime",
"value": "\"0.000100000000000000\""
}
]
},
"status": "PROPOSAL_STATUS_VOTING_PERIOD",
"final_tally_result": {
"yes": "0",
"abstain": "0",
"no": "0",
"no_with_veto": "0"
},
"submit_time": "2023-02-16T02:41:22.830539778Z",
"deposit_end_time": "2023-02-18T02:41:22.830539778Z",
"total_deposit": [
{
"denom": "uplugcn",
"amount": "10000000"
}
],
"voting_start_time": "2023-02-16T02:41:22.830539778Z",
"voting_end_time": "2023-02-21T02:41:22.830539778Z"
}
}