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

# Ambil komentar tertentu berdasarkan ID



## OpenAPI

````yaml /id/api-reference/openapi/launch-forum-v1.yaml get /comment/id
openapi: 3.0.3
info:
  title: API Forum Peluncuran Raydium
  description: >-
    API Diskusi untuk pool LaunchLab. Posting dan ambil komentar pada token
    mint. Memerlukan header `ray-token` (JWT dari Auth API) untuk operasi tulis.
  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: Posting dan ambil komentar pool
  - name: Utilities
    description: Pemeriksaan kesehatan
paths:
  /comment/id:
    get:
      tags:
        - Comments
      summary: Ambil komentar tertentu berdasarkan ID
      operationId: getCommentId
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: integer
          description: ID Komentar
      responses:
        '200':
          description: Detail komentar
        '500':
          description: Komentar tidak ditemukan atau telah dihapus

````