> ## 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 /ko/api-reference/openapi/launch-forum-v1.yaml post /comment
openapi: 3.0.3
info:
  title: Raydium Launch Forum API
  description: >-
    LaunchLab 풀에 대한 토론 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: 잘못된 요청 또는 콘텐츠 정책 위반

````