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

# Submit feedback



## OpenAPI

````yaml https://app.getkontext.io/openapi.json post /v1/feedback
openapi: 3.1.0
info:
  title: Kontext API
  version: 1.0.0
  description: >-
    API documentation for Kontext — generated from Zod schemas in
    @kontext/api-contract
servers:
  - url: https://getkontext.io/api
    description: Production
  - url: http://localhost:5173/api
    description: Development
security:
  - BearerAuth: []
paths:
  /v1/feedback:
    post:
      tags:
        - Feedback
      summary: Submit feedback
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                productId:
                  type: string
                  minLength: 1
                content:
                  type: object
                  properties:
                    title:
                      type: string
                    body:
                      type: string
                      minLength: 1
                    bodyFormat:
                      type: string
                      enum:
                        - text
                        - json
                        - html
                        - markdown
                      default: markdown
                  required:
                    - body
                sourceUrl:
                  type: string
                  format: uri
                feedbackType:
                  type: string
                  enum:
                    - bug
                    - feature_request
                    - support_ticket
                    - prospect_call
                    - support_call
                    - research_call
                    - generic_feedback
                  default: generic_feedback
                contextId:
                  type: string
                actorId:
                  type: string
                metadata:
                  type: object
                  additionalProperties: {}
                  default: {}
                notes:
                  type: string
                source:
                  anyOf:
                    - type: string
                      enum:
                        - manual
                        - api
                    - type: string
              required:
                - productId
                - content
      responses:
        '201':
          description: Feedback submitted and queued for processing
          content:
            application/json:
              schema:
                type: object
                properties:
                  feedbackId:
                    type: string
                  url:
                    type: string
                    format: uri
                  status:
                    type: string
                    enum:
                      - queued
                required:
                  - feedbackId
                  - url
                  - status
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  issues:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type: string
                        message:
                          type: string
                        path:
                          type: array
                          items:
                            anyOf:
                              - type: string
                              - type: number
                      required:
                        - code
                        - message
                required:
                  - error
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  issues:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type: string
                        message:
                          type: string
                        path:
                          type: array
                          items:
                            anyOf:
                              - type: string
                              - type: number
                      required:
                        - code
                        - message
                required:
                  - error
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  issues:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type: string
                        message:
                          type: string
                        path:
                          type: array
                          items:
                            anyOf:
                              - type: string
                              - type: number
                      required:
                        - code
                        - message
                required:
                  - error
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key (ktx_key_*) or session Bearer token

````