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

# Feedback form generator

> Generate custom feedback forms instantly. Just describe what feedback you need, and our AI creates a complete form with relevant questions and settings.



## OpenAPI

````yaml POST /public/v1/feed-form-generator
openapi: 3.1.0
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.hobbo.ai
    description: Main API server
  - url: https://py-api.hobbo.ai
    description: Python API server for scraper endpoints
security:
  - ApiKeyAuth: []
paths:
  /public/v1/feed-form-generator:
    post:
      description: >-
        Generate custom feedback forms instantly. Just describe what feedback
        you need, and our AI creates a complete form with relevant questions and
        settings.
      requestBody:
        description: Feedback form generation parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeedFormGeneratorRequest'
        required: true
      responses:
        '200':
          description: Feedback form generated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedFormGeneratorResponse'
              examples:
                validationError:
                  value:
                    status: 200
                    data: {}
                    success: true
                    message: <string>
        '400':
          description: Validation error or unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                validationError:
                  value:
                    status: 400
                    data: {}
                    success: false
                    message: <string>
      servers:
        - url: https://api.hobbo.ai
components:
  schemas:
    FeedFormGeneratorRequest:
      type: object
      required:
        - brief
        - user_meta
      properties:
        brief:
          type: string
          description: Description of the feedback you want to collect
        language:
          type: string
          description: Optional language for the feedback form
        user_meta:
          type: object
          description: User metadata including email
          properties:
            user_email:
              type: string
              format: email
              description: User's email address
    FeedFormGeneratorResponse:
      type: object
      properties:
        status:
          type: integer
          description: HTTP status code
        data:
          type: object
          description: Complete form configuration
          properties:
            feedFormName:
              type: string
              description: Generated name for the feedback form
            landingPage:
              type: object
              description: Landing page configuration
            captureFeedPage:
              type: object
              description: Capture page with form questions
            userDetailsPage:
              type: object
              description: User details collection page
            thankYouPage:
              type: object
              description: Thank you page configuration
        success:
          type: boolean
          description: Indicates if the operation was successful
        message:
          type: string
          description: Response message
    Error:
      type: object
      properties:
        status:
          type: integer
          description: HTTP status code
        data:
          type: object
          description: Empty object or additional error data
        success:
          type: boolean
          description: Indicates operation failed
          example: false
        message:
          type: string
          description: Error message describing what went wrong

````