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

# 按 ID 取得特定評論



## OpenAPI

````yaml /zh-Hant/api-reference/openapi/launch-forum-v1.yaml get /comment/id
openapi: 3.0.3
info:
  title: Raydium 啟動論壇 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/id:
    get:
      tags:
        - Comments
      summary: 按 ID 取得特定評論
      operationId: getCommentId
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: integer
          description: 評論 ID
      responses:
        '200':
          description: 評論詳情
        '500':
          description: 評論未找到或已刪除

````