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

# Submit Feedback

> Submit feedback on trust score accuracy (requires authentication).

Args:
    request: Feedback details (subject, type, optional comment)

Returns:
    FeedbackResponse with confirmation



## OpenAPI

````yaml /api-reference/openapi.json post /v1/feedback
openapi: 3.1.0
info:
  title: LimitGuard.ai
  description: Trust Intelligence API - Entity verification and risk scoring
  version: 0.1.0
servers:
  - url: https://api.limitguard.ai
security: []
paths:
  /v1/feedback:
    post:
      summary: Submit Feedback
      description: |-
        Submit feedback on trust score accuracy (requires authentication).

        Args:
            request: Feedback details (subject, type, optional comment)

        Returns:
            FeedbackResponse with confirmation
      operationId: submit_feedback_v1_feedback_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeedbackRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedbackResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    FeedbackRequest:
      properties:
        subject:
          type: string
          title: Subject
          description: Entity name/domain/wallet that was scored
        score_entry_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Score Entry Id
          description: 'Optional: specific score entry to give feedback on'
        feedback_type:
          type: string
          enum:
            - accurate
            - too_high
            - too_low
            - incorrect
          title: Feedback Type
        comment:
          anyOf:
            - type: string
              maxLength: 500
            - type: 'null'
          title: Comment
          description: Optional feedback details
        reporter_context:
          anyOf:
            - type: string
            - type: 'null'
          title: Reporter Context
          description: Optional context about reporter (e.g., 'customer for 2 years')
      type: object
      required:
        - subject
        - feedback_type
      title: FeedbackRequest
      description: User feedback on trust score accuracy.
    FeedbackResponse:
      properties:
        feedback_id:
          type: string
          title: Feedback Id
        status:
          type: string
          title: Status
          default: received
        message:
          type: string
          title: Message
          default: Thank you for your feedback. It helps us improve trust scores.
      type: object
      title: FeedbackResponse
      description: Confirmation that feedback was received.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````