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

# List Proposals

> Retrieve all proposals for a Grid smart account

Lists all proposals associated with a Grid smart account. Use this endpoint to display pending proposals, track voting progress, or audit historical decisions.

<Note>
  The `{address}` parameter is your **smart account address**, not a proposal address. You can find this from the account creation response or [Get Account](/grid/v1/api-reference/endpoint/account-management/get).
</Note>

## Proposal Status Values

* **Active**: Voting in progress, accepts `approve` or `reject` votes
* **Approved**: Threshold met, ready for execution or can be `cancelled`
* **Rejected**: Rejected by voters (terminal)
* **Cancelled**: Cancelled after approval (terminal)

By default, status is client-facing. For proposals that are internally closed on-chain, the API infers terminal outcome when possible (`executed`, `cancelled`, or `rejected`).

Use `showOnChainStatus=true` to return raw on-chain status values (including `closed`).

## Pagination

Results are paginated with a default limit of 50 (max 100). Use the `cursor` from a previous response to fetch the next page:

```typescript theme={null}
// First page
const proposals = await grid.listProposals(accountAddress, { limit: 20 });

// Next page
const nextPage = await grid.listProposals(accountAddress, {
  limit: 20,
  cursor: proposals.nextCursor
});
```

## Understanding the Response

Each proposal includes voting state arrays (`approved`, `rejected`, `cancelled`) showing which signers have voted. Use this to:

* Calculate remaining votes needed: `threshold - approved.length`
* Show which signers haven't voted yet
* Prevent duplicate vote attempts

## Related Endpoints

* [Create Proposal](/grid/v1/api-reference/endpoint/proposals/create)
* [Get Proposal](/grid/v1/api-reference/endpoint/proposals/get)
* [Vote on Proposal](/grid/v1/api-reference/endpoint/proposals/vote)


## OpenAPI

````yaml GET /api/grid/v1/accounts/{address}/proposals
openapi: 3.1.0
info:
  title: Grid v1 API
  description: Grid v1 REST API for Solana-based smart account system
  contact:
    name: Grid API Support
    url: https://squads.so
    email: support@squads.so
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://grid.squads.xyz
    description: Production server
security:
  - bearer_auth: []
tags:
  - name: accounts
    description: Smart account management operations
  - name: spending-limits
    description: Spending limit management
  - name: standing-orders
    description: Standing order operations
  - name: transactions
    description: Transaction management
  - name: trade
    description: Trade operations and management
  - name: payments
    description: Payment intent operations
  - name: passkeys
    description: Passkey management
  - name: kyc
    description: Know Your Customer operations
  - name: external-accounts
    description: External bank account management
  - name: virtual-accounts
    description: Virtual account management
  - name: auth
    description: Authentication operations
  - name: proposals
    description: Proposal management for multi-sig operations
  - name: compliance
    description: Compliance entity management and KYB/KYC operations
paths:
  /api/grid/v1/accounts/{address}/proposals:
    get:
      tags:
        - proposals
      summary: List all proposals for an account
      description: >-
        Retrieve all proposals for a smart account with optional filtering and
        pagination
      operationId: handler
      parameters:
        - name: address
          in: path
          description: Smart account address
          required: true
          schema:
            type: string
        - name: x-grid-environment
          in: header
          description: Target Solana environment
          required: true
          schema:
            type: string
        - name: status
          in: query
          description: Filter by proposal status
          required: false
          schema:
            type: string
        - name: limit
          in: query
          description: 'Limit the number of results (default: 50, max: 100)'
          required: false
          schema:
            type: integer
            format: int32
            minimum: 0
        - name: cursor
          in: query
          description: Pagination cursor
          required: false
          schema:
            type: string
        - name: showOnChainStatus
          in: query
          description: Return raw on-chain proposal status values
          required: false
          schema:
            type: boolean
      responses:
        '200':
          description: Proposals retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GridApiResponse_Vec_ProposalResponse'
        '400':
          description: Invalid request parameters
        '404':
          description: Smart account not found
        '500':
          description: Internal server error
      security:
        - bearer_auth: []
components:
  schemas:
    GridApiResponse_Vec_ProposalResponse:
      type: object
      required:
        - data
        - metadata
      properties:
        data:
          type: array
          items:
            type: object
            description: Shared response structure for proposal endpoints
            required:
              - proposalAddress
              - consensusAccount
              - consensusAccountType
              - status
              - statusTimestamp
              - approved
              - rejected
              - cancelled
            properties:
              approved:
                type: array
                items:
                  type: string
              blockTime:
                type:
                  - string
                  - 'null'
                format: date-time
              cancelled:
                type: array
                items:
                  type: string
              consensusAccount:
                type: string
              consensusAccountType:
                type: string
              lastModifiedSignature:
                type:
                  - string
                  - 'null'
              mainAccountAddress:
                type:
                  - string
                  - 'null'
              proposalAddress:
                type: string
              rejected:
                type: array
                items:
                  type: string
              settingsAddress:
                type:
                  - string
                  - 'null'
              status:
                type: string
              statusTimestamp:
                type: integer
                format: int64
              transactionIndex:
                type:
                  - integer
                  - 'null'
                format: int32
        metadata:
          $ref: '#/components/schemas/Metadata'
    Metadata:
      type: object
      required:
        - request_id
        - timestamp
      properties:
        request_id:
          type: string
        timestamp:
          type: string
          format: date-time
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: Your Grid API key from the Grid Dashboard

````