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

# Đăng bình luận trên một pool

> Đăng bình luận mới. Yêu cầu header ray-token.



## OpenAPI

````yaml /vi/api-reference/openapi/launch-forum-v1.yaml post /comment
openapi: 3.0.3
info:
  title: API Diễn đàn Khởi chạy Raydium
  description: >-
    API Thảo luận cho các pool LaunchLab. Đăng và lấy lại các bình luận về token
    mint. Yêu cầu header `ray-token` (JWT từ Auth API) cho các thao tác ghi.
  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: Đăng và lấy lại bình luận pool
  - name: Utilities
    description: Kiểm tra tình trạng
paths:
  /comment:
    post:
      tags:
        - Comments
      summary: Đăng bình luận trên một pool
      description: Đăng bình luận mới. Yêu cầu header ray-token.
      operationId: postComment
      parameters:
        - name: ray-token
          in: header
          required: true
          schema:
            type: string
          description: JWT token từ 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: Ví của người bình luận
                text:
                  type: string
                  description: Nội dung bình luận (tối đa 2000 ký tự)
                file:
                  type: string
                  format: binary
                  description: Hình ảnh tùy chọn (tối đa 5MB)
      responses:
        '200':
          description: Bình luận đã được đăng thành công
        '400':
          description: Yêu cầu không hợp lệ hoặc vi phạm nội dung

````