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

# Lấy một bình luận cụ thể theo ID



## OpenAPI

````yaml /vi/api-reference/openapi/launch-forum-v1.yaml get /comment/id
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/id:
    get:
      tags:
        - Comments
      summary: Lấy một bình luận cụ thể theo ID
      operationId: getCommentId
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: integer
          description: Comment ID
      responses:
        '200':
          description: Chi tiết bình luận
        '500':
          description: Bình luận không được tìm thấy hoặc đã bị xóa

````