> ## 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.

# Get Proposal

> Retrieve details for a specific proposal

Retrieves detailed information about a specific proposal, including current status, voting state, and metadata.

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 the raw on-chain status value (including `closed`).

<Note>
  The `{address}` parameter is your smart account address, and `{proposal_address}` is the specific proposal's on-chain address from [Create Proposal](/grid/v1/api-reference/endpoint/proposals/create) or [List Proposals](/grid/v1/api-reference/endpoint/proposals/list).
</Note>

## Ownership Verification

The API verifies that the proposal belongs to the specified smart account. Requesting a proposal with the wrong account address returns 403 Forbidden.

## Understanding Voting State

The response includes `approved`, `rejected`, and `cancelled` arrays showing which signers have voted:

```typescript theme={null}
const proposal = await grid.getProposal(accountAddress, proposalAddress);

// Calculate remaining votes needed
const votesNeeded = account.threshold - proposal.approved.length;

// Check if specific signer has voted
const hasVoted = proposal.approved.includes(signerAddress) ||
                 proposal.rejected.includes(signerAddress);
```

## Related Endpoints

* [List Proposals](/grid/v1/api-reference/endpoint/proposals/list)
* [Vote on Proposal](/grid/v1/api-reference/endpoint/proposals/vote)


## OpenAPI

````yaml GET /api/grid/v1/accounts/{address}/proposals/{proposal_address}
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/{proposal_address}:
    get:
      tags:
        - proposals
      summary: Get a specific proposal
      description: Retrieve details for a specific proposal on a smart account
      operationId: handler
      parameters:
        - name: address
          in: path
          description: Smart account address
          required: true
          schema:
            type: string
        - name: proposal_address
          in: path
          description: Proposal address
          required: true
          schema:
            type: string
        - name: x-grid-environment
          in: header
          description: Target Solana environment
          required: true
          schema:
            type: string
        - name: showOnChainStatus
          in: query
          description: Return raw on-chain proposal status value
          required: false
          schema:
            type: boolean
      responses:
        '200':
          description: Proposal retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GridApiResponse_ProposalResponse'
        '400':
          description: Invalid request parameters
        '403':
          description: Proposal does not belong to specified account
        '404':
          description: Proposal or smart account not found
        '500':
          description: Internal server error
      security:
        - bearer_auth: []
components:
  schemas:
    GridApiResponse_ProposalResponse:
      type: object
      required:
        - data
        - metadata
      properties:
        data:
          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

````