> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# wallet/getproposalbyid | TRON

> TRON API method that retrieves detailed information about a specific governance proposal using its ID. Use it on TRON via Chainstack.

TRON API method that retrieves detailed information about a specific governance proposal using its ID.

## Parameters

* `id` — the ID of the proposal to retrieve information for.

## Response

* `proposal_id` — the unique identifier of the proposal
* `proposer_address` — the address of the Super Representative who created the proposal
* `parameters` — object containing the parameter changes proposed
* `expiration_time` — timestamp when the proposal expires
* `create_time` — timestamp when the proposal was created
* `approvals` — array of Super Representatives who have approved the proposal
* `state` — current state of the proposal (PENDING, DISAPPROVED, APPROVED, CANCELED)

## Use case

The `wallet/getproposalbyid` method is used for:

* Retrieving detailed proposal information for governance interfaces
* Checking proposal status and approval progress
* Monitoring proposal parameters and voting results
* Building governance dashboards and voting applications


## OpenAPI

````yaml openapi/tron_node_api/getproposalbyid.json post /95e61622bf6a8af293978377718e3b77/wallet/getproposalbyid
openapi: 3.0.0
info:
  title: wallet/getproposalbyid TRON API
  version: 1.0.0
  description: Get detailed information about a specific governance proposal
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getproposalbyid:
    post:
      tags:
        - Governance
      summary: wallet/getproposalbyid
      operationId: getProposalById
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - id
              properties:
                id:
                  type: integer
                  default: 1
      responses:
        '200':
          description: Proposal information
          content:
            application/json:
              schema:
                type: object
                properties:
                  proposal_id:
                    type: integer
                  proposer_address:
                    type: string
                  parameters:
                    type: object
                    additionalProperties:
                      type: integer
                  expiration_time:
                    type: integer
                  create_time:
                    type: integer
                  approvals:
                    type: array
                    items:
                      type: string
                  state:
                    type: string
                    enum:
                      - PENDING
                      - DISAPPROVED
                      - APPROVED
                      - CANCELED

````