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

# Get all forms

> Returns a paginated list. Requires auth. Soft-deleted forms are always excluded; forms are returned regardless of `isActive` unless the `status` filter is used. Each row carries a `submissionsCount`.



## OpenAPI

````yaml /api-reference/ai-cms/openapi.json get /forms/getAll
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Tags
    description: Tag management endpoints
paths:
  /forms/getAll:
    get:
      tags:
        - Forms
      summary: Get all forms
      description: >-
        Returns a paginated list. Requires auth. Soft-deleted forms are always
        excluded; forms are returned regardless of `isActive` unless the
        `status` filter is used. Each row carries a `submissionsCount`.
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            example: 1
            minimum: 1
          description: Page index (1-based).
        - in: query
          name: limit
          schema:
            type: integer
            example: 10
            minimum: 1
            maximum: 100
          description: Items per page.
        - in: query
          name: formType
          schema:
            type: string
            enum:
              - public
              - internal
            example: public
          description: >-
            Only include forms with this `formType`. Values outside the FormType
            enum are ignored.
        - in: query
          name: status
          schema:
            type: string
            enum:
              - active
              - inactive
            example: active
          description: Filter on the form's `isActive` flag. Omit to return both.
      responses:
        '200':
          description: OK
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````