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

# Send feedback

> Submit feedback (bug report, feature request, or general comment). Stored for the team and forwarded to their notification channel.



## OpenAPI

````yaml /api-reference/openapi.json post /feedback
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /feedback:
    post:
      tags:
        - Feedback
      summary: Send feedback
      description: >-
        Submit feedback (bug report, feature request, or general comment).
        Stored for the team and forwarded to their notification channel.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/api_endpoints.SendFeedbackRequest'
        description: Feedback type and message
        required: true
      responses:
        '200':
          description: Feedback received
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.OKResponse'
        '400':
          description: Invalid type or empty message
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.SendFeedbackRequest:
      type: object
      properties:
        message:
          description: Message is the feedback content.
          type: string
          example: It would be great to have a dark mode.
        type:
          description: 'Type is one of: bug, feature_request, general.'
          type: string
          example: feature_request
    api_endpoints.OKResponse:
      type: object
      properties:
        ok:
          type: boolean
          example: true
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````