> ## 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.

# プールへのコメント投稿

> 新しいコメントを投稿します。ray-token ヘッダーが必要です。



## OpenAPI

````yaml /ja/api-reference/openapi/launch-forum-v1.yaml post /comment
openapi: 3.0.3
info:
  title: Raydium Launch Forum API
  description: >-
    LaunchLab プール向けの Discussion API。ミントトークンへのコメント投稿・取得が可能です。書き込み操作には `ray-token`
    ヘッダー（Auth API から取得した JWT）が必要です。
  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: プールのコメント投稿・取得
  - name: Utilities
    description: ヘルスチェック
paths:
  /comment:
    post:
      tags:
        - Comments
      summary: プールへのコメント投稿
      description: 新しいコメントを投稿します。ray-token ヘッダーが必要です。
      operationId: postComment
      parameters:
        - name: ray-token
          in: header
          required: true
          schema:
            type: string
          description: Auth API から取得した JWT トークン
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
                - poolId
                - text
                - wallet
              properties:
                poolId:
                  type: string
                  description: プール・ミント ID
                wallet:
                  type: string
                  description: コメント者のウォレット
                text:
                  type: string
                  description: コメントテキスト（最大 2000 文字）
                file:
                  type: string
                  format: binary
                  description: オプション画像（最大 5MB）
      responses:
        '200':
          description: コメントが正常に投稿されました
        '400':
          description: 無効なリクエストまたはコンテンツ違反

````