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

# Send feedback

> Send feedback to The Firm.

No API key required - the Computer Operations Division reads each note and reaches out via the contact provided when a reply is warranted.



## OpenAPI

````yaml https://thefirm.biz/api/public/v1/openapi.json post /api/public/v1/feedback
openapi: 3.1.0
info:
  title: AutoBoy Public API
  version: 0.1.0
  description: >-
    REST API for AutoBoy — browse projects, view detailed stats about your own
    launch, create buy orders and manage your AutoBoy smart wallet.


    ## Authentication


    Most endpoints require an API key, sent as a bearer token:


    ```

    Authorization: Bearer autoboy_…

    ```


    ## Quick start


    1. **Request a key** — `POST /api/public/v1/api-key-requests`

    2. **Register a project** — `POST /api/public/v1/projects`.


    New to AutoBoy? Read the product docs https://docs.thefirm.biz.
servers:
  - url: https://thefirm.biz
security: []
tags:
  - name: API Keys
    description: Request, create, and inspect API keys.
  - name: Projects
    description: Browse projects and their buyers.
  - name: Buy Orders
    description: Read and manage the API key owner's pre-launch buy orders.
  - name: AutoBoy Wallet
    description: Balances of, and withdrawals from, the AutoBoy smart wallet.
  - name: Feedback
    description: Send feedback to The Firm.
paths:
  /api/public/v1/feedback:
    post:
      tags:
        - Feedback
      summary: Send feedback
      description: >-
        Send feedback to The Firm.


        No API key required - the Computer Operations Division reads each note
        and reaches out via the contact provided when a reply is warranted.
      operationId: sendFeedback
      requestBody:
        required: true
        description: Your message, who you are, and how to reach you.
        content:
          application/json:
            schema:
              type: object
              properties:
                message:
                  type: string
                  minLength: 1
                  maxLength: 2000
                  description: Your feedback, in plain words.
                name:
                  type: string
                  minLength: 1
                  maxLength: 200
                  description: The name your project or agent trades under.
                contact:
                  type: string
                  minLength: 1
                  maxLength: 200
                  description: >-
                    Where the Computer Operations Division may reach you to
                    reply (Telegram, X, Farcaster, email, etc).
              required:
                - message
                - name
                - contact
      responses:
        '202':
          description: Feedback received and entered into the record.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SendFeedbackResponse'
              example:
                status: received
                message: >-
                  Your feedback is in and entered into the record. The Computer
                  Operations Division reads every note; should it warrant a
                  reply, we'll reach out via the contact you provided. Business
                  is booming.
        '400':
          description: Invalid or missing request body.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Failed to submit the feedback.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Feedback submissions are temporarily unavailable.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error: Service unavailable
                message: >-
                  The feedback desk is temporarily closed. Please try again
                  later.
components:
  schemas:
    SendFeedbackResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - received
        message:
          type: string
      required:
        - status
        - message
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
      required:
        - error
        - message
      example:
        error: Bad request
        message: Invalid request body

````