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

# Kommentar zu einem Pool posten

> Neuen Kommentar posten. Erfordert ray-token Header.



## OpenAPI

````yaml /de/api-reference/openapi/launch-forum-v1.yaml post /comment
openapi: 3.0.3
info:
  title: Raydium Launch Forum API
  description: >-
    Diskussions-API für LaunchLab Pools. Kommentare zu Mint-Token posten und
    abrufen. Erfordert `ray-token` Header (JWT von Auth API) für
    Schreibvorgänge.
  version: 1.0.0
servers:
  - url: https://launch-forum-v1.raydium.io
    description: Mainnet
  - url: https://launch-forum-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Comments
    description: Pool-Kommentare posten und abrufen
  - name: Utilities
    description: Systemzustandsprüfungen
paths:
  /comment:
    post:
      tags:
        - Comments
      summary: Kommentar zu einem Pool posten
      description: Neuen Kommentar posten. Erfordert ray-token Header.
      operationId: postComment
      parameters:
        - name: ray-token
          in: header
          required: true
          schema:
            type: string
          description: JWT-Token von Auth API
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
                - poolId
                - text
                - wallet
              properties:
                poolId:
                  type: string
                  description: Pool-/Mint-ID
                wallet:
                  type: string
                  description: Wallet des Kommentators
                text:
                  type: string
                  description: Kommentartext (max. 2000 Zeichen)
                file:
                  type: string
                  format: binary
                  description: Optionales Bild (max. 5 MB)
      responses:
        '200':
          description: Kommentar erfolgreich gepostet
        '400':
          description: Ungültige Anfrage oder Verstoß gegen Richtlinien

````