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

# List Forms

> Get all forms for the authenticated user with pagination support.



## OpenAPI

````yaml GET /forms
openapi: 3.1.0
info:
  title: FormBnB API
  version: 1.0.0
  description: API for FormBnB - Form backend as a service
servers:
  - url: https://api.formbnb.com
security: []
paths:
  /forms:
    get:
      tags:
        - Forms
      summary: List all forms
      description: Get all forms for the authenticated user with pagination support.
      parameters:
        - schema:
            type: string
            description: 'Maximum number of forms to return (default: 20)'
          required: false
          name: limit
          in: query
        - schema:
            type: string
            description: 'Number of forms to skip (default: 0)'
          required: false
          name: offset
          in: query
        - schema:
            type: string
            format: uuid
            description: Filter by organization ID
          required: false
          name: org_id
          in: query
        - schema:
            type: string
            description: Include inactive forms (true/false)
          required: false
          name: include_inactive
          in: query
      responses:
        '200':
          description: List of forms
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListFormsResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ListFormsResponse:
      type: object
      properties:
        forms:
          type: array
          items:
            $ref: '#/components/schemas/Form'
        total:
          type: number
      required:
        - forms
        - total
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
      required:
        - error
    Form:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        slug:
          type: string
        description:
          type: string
          nullable: true
        is_active:
          type: boolean
        user_id:
          type: string
          format: uuid
        org_id:
          type: string
          format: uuid
        email_notifications:
          type: boolean
        notification_email:
          type: string
          nullable: true
        notification_emails:
          type: array
          nullable: true
          items:
            type: string
        redirect_url:
          type: string
          nullable: true
        allowed_domains:
          type: array
          nullable: true
          items:
            type: string
        webhook_enabled:
          type: boolean
        webhook_url:
          type: string
          nullable: true
        webhook_secret:
          type: string
          nullable: true
        custom_email_subject:
          type: string
          nullable: true
        custom_email_template:
          type: string
          nullable: true
        auto_responder_enabled:
          type: boolean
        auto_responder_subject:
          type: string
          nullable: true
        auto_responder_body:
          type: string
          nullable: true
        auto_responder_from_name:
          type: string
          nullable: true
        auto_responder_include_data:
          type: boolean
        slack_enabled:
          type: boolean
        slack_webhook_url:
          type: string
          nullable: true
        discord_enabled:
          type: boolean
        discord_webhook_url:
          type: string
          nullable: true
        google_sheets_enabled:
          type: boolean
        google_sheets_url:
          type: string
          nullable: true
        telegram_enabled:
          type: boolean
        telegram_bot_token:
          type: string
          nullable: true
        telegram_chat_id:
          type: string
          nullable: true
        created_at:
          type: string
        updated_at:
          type: string
      required:
        - id
        - name
        - slug
        - description
        - is_active
        - user_id
        - org_id
        - email_notifications
        - notification_email
        - notification_emails
        - redirect_url
        - allowed_domains
        - webhook_enabled
        - webhook_url
        - webhook_secret
        - custom_email_subject
        - custom_email_template
        - auto_responder_enabled
        - auto_responder_subject
        - auto_responder_body
        - auto_responder_from_name
        - auto_responder_include_data
        - slack_enabled
        - slack_webhook_url
        - discord_enabled
        - discord_webhook_url
        - google_sheets_enabled
        - google_sheets_url
        - telegram_enabled
        - telegram_bot_token
        - telegram_chat_id
        - created_at
        - updated_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT or API Key
      description: >-
        Authentication using either a FormBnB session JWT (issued by /auth) or
        an API key (prefixed with sk_). Both token types are passed as Bearer
        tokens in the Authorization header.

````