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

> TRON API method that retrieves governance proposals with pagination support, allowing efficient browsing of large proposal lists. On TRON.

TRON API method that retrieves governance proposals with pagination support, allowing efficient browsing of large proposal lists.

## Parameters

* `offset` — the starting index for pagination (default: 0).
* `limit` — the maximum number of proposals to return (default: 10, max: 100).

## 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/getpaginatedproposallist` method is used for:

* Implementing paginated proposal browsing in applications
* Efficiently loading large proposal datasets
* Building scalable governance interfaces with pagination
* Creating proposal exploration tools with performance optimization


## OpenAPI

````yaml openapi/tron_node_api/getpaginatedproposallist.json post /95e61622bf6a8af293978377718e3b77/wallet/getpaginatedproposallist
openapi: 3.0.0
info:
  title: wallet/getpaginatedproposallist TRON API
  version: 1.0.0
  description: Get paginated list of governance proposals
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getpaginatedproposallist:
    post:
      tags:
        - Governance
      summary: wallet/getpaginatedproposallist
      operationId: getPaginatedProposalList
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                offset:
                  type: integer
                  default: 0
                  minimum: 0
                limit:
                  type: integer
                  default: 10
                  minimum: 1
                  maximum: 100
      responses:
        '200':
          description: Paginated list of 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

````