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

# Get All Review Form

> Returns a list of all review forms.



## OpenAPI

````yaml GET /forms
openapi: 3.1.0
info:
  title: Feedspace API
  description: Feedspace API v3 - Feedback and testimonial management platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.feedspace.io/v3
security: []
paths:
  /forms:
    get:
      tags:
        - ReviewForms
      summary: Get all review forms
      description: Returns a list of all review forms.
      operationId: getAllReviewForms
      responses:
        '200':
          description: A list of review forms.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/PaginatedResponse'
                  can:
                    type: object
                    description: Capability flags for the current user.
                    properties:
                      pause:
                        type: boolean
                        description: Whether the user is allowed to pause forms
              examples:
                success:
                  value:
                    data:
                      current_page: 1
                      data:
                        - id: 251
                          project_id: 354
                          unique_form_id: form_f5Uc9agvcXRKgPdDrVCIZYc1
                          name: Testimonial Collection Form
                          page_image: >-
                            uploads/gx8N4Q/allinone-feed-form/1766392380_cloned_1766055929FS-Shopify_App-Logo.png
                          page_image_url: >-
                            https://feedspace-staging.s3.us-east-2.amazonaws.com/uploads/gx8N4Q/allinone-feed-form/1766392380_cloned_1766055929FS-Shopify_App-Logo.png
                          public_url: https://feedspace.io/u/E31TFy1/testapp3
                          public_display_url: feedspace.io/u/E31TFy1/testapp3
                          updated_at: '2026-01-01 11:29:00'
                          hits: '35'
                          reviews: '14'
                          conversion_rate: 40
                          is_paused: 0
                          form_kind: legacy
                          updated_by:
                            id: 282
                            name: Nikhil Radadiya
                      first_page_url: http://api.feedspace.io/v3/forms?page=1
                      from: 1
                      next_page_url: null
                      path: http://api.feedspace.io/v3/forms
                      per_page: 1000
                      prev_page_url: null
                      to: 5
                    can:
                      pause: true
      security:
        - basicAuth: []
components:
  schemas:
    PaginatedResponse:
      type: object
      properties:
        current_page:
          type: integer
        data:
          type: array
          items:
            type: object
        first_page_url:
          type: string
        from:
          type: integer
        next_page_url:
          type:
            - string
            - 'null'
        path:
          type: string
        per_page:
          type: integer
        prev_page_url:
          type:
            - string
            - 'null'
        to:
          type: integer
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        HTTP Basic Authentication using API Key and Secret Key. The credentials
        should be Base64 encoded in the format 'api_key:secret_key'. You can
        obtain your API Key and Secret Key from Feedspace → Automation → API
        (https://app.feedspace.io/automation/api).

````