> ## 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/listproposals | TRON

> TRON API method that retrieves all governance proposals on the TRON network, providing a comprehensive view of current and past proposals.

TRON API method that retrieves all governance proposals on the TRON network, providing a comprehensive view of current and past proposals.

## Parameters

This method does not require any parameters.

## Response

* `proposals` — array of proposal objects, each containing:
  * `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/listproposals` method is used for:

* Displaying all governance proposals in management interfaces
* Building comprehensive governance dashboards
* Analyzing proposal trends and voting patterns
* Creating proposal monitoring and notification systems


## OpenAPI

````yaml openapi/tron_node_api/listproposals.json post /95e61622bf6a8af293978377718e3b77/wallet/listproposals
openapi: 3.0.0
info:
  title: wallet/listproposals TRON API
  version: 1.0.0
  description: List all governance proposals on the TRON network
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/listproposals:
    post:
      tags:
        - Governance
      summary: wallet/listproposals
      operationId: listProposals
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties: {}
      responses:
        '200':
          description: List of all proposals
          content:
            application/json:
              schema:
                type: object
                properties:
                  proposals:
                    type: array
                    items:
                      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

````