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

# List proposals

> Returns a paginated list of proposals for the authenticated organization.



## OpenAPI

````yaml /openapi.json get /v1/proposals
openapi: 3.1.0
info:
  title: Propal Public API
  version: 1.0.0
  description: >-
    Public REST API for Propal — proposals, leads, catalog, templates, themes,
    media, metrics, and organization. An MCP (Model Context Protocol) endpoint
    is also available at `POST /v1/mcp` for AI agents — it requires the
    `mcp:use` scope and exposes the same resources as tools, plus prefab section
    templates to compose proposals.
servers:
  - url: https://api.propal.io
    description: Production
security: []
paths:
  /v1/proposals:
    get:
      tags:
        - Proposals
      summary: List proposals
      description: >-
        Returns a paginated list of proposals for the authenticated
        organization.
      parameters:
        - schema:
            type: string
            default: '25'
          required: false
          name: limit
          in: query
        - schema:
            type: string
          required: false
          name: after
          in: query
        - schema:
            type: string
            enum:
              - pending
              - approved
              - denied
              - revision_request
          required: false
          name: status
          in: query
        - schema:
            type: string
            format: uuid
          required: false
          name: lead_id
          in: query
      responses:
        '200':
          description: Paginated proposal list
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        proposal_id:
                          type: string
                          nullable: true
                          format: uuid
                        title:
                          type: string
                          nullable: true
                        slug:
                          type: string
                          nullable: true
                        deal_status:
                          type: string
                          nullable: true
                        page_status:
                          type: string
                          nullable: true
                        payment_status:
                          type: string
                          nullable: true
                        language:
                          type: string
                          nullable: true
                        created_at:
                          type: string
                          nullable: true
                        sent_at:
                          type: string
                          nullable: true
                        published_at:
                          type: string
                          nullable: true
                        lead_id:
                          type: string
                          nullable: true
                        lead_name:
                          type: string
                          nullable: true
                        lead_email:
                          type: string
                          nullable: true
                        is_deleted:
                          type: boolean
                          nullable: true
                        is_archived:
                          type: boolean
                          nullable: true
                      required:
                        - proposal_id
                        - title
                        - slug
                        - deal_status
                        - page_status
                        - payment_status
                        - language
                        - created_at
                        - sent_at
                        - published_at
                        - lead_id
                        - lead_name
                        - lead_email
                        - is_deleted
                        - is_archived
                  pagination:
                    type: object
                    properties:
                      has_more:
                        type: boolean
                      next_cursor:
                        type: string
                        nullable: true
                      total_count:
                        type: number
                    required:
                      - has_more
                      - next_cursor
                      - total_count
                required:
                  - data
                  - pagination
        '400':
          description: Validation error
        '401':
          description: Unauthorized — missing or invalid API key
        '403':
          description: Forbidden — API key missing required scope
        '404':
          description: Resource not found
        '429':
          description: Rate limit exceeded
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'API key in format: pp_live_xxxxxxxxxxxxxxxxxxxxxxxx'

````