> ## 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 /ru/api-reference/openapi/launch-forum-v1.yaml get /comment/id
openapi: 3.0.3
info:
  title: API Forum Запуска Raydium
  description: >-
    API для обсуждения пулов LaunchLab. Публикуйте и получайте комментарии к
    токенам. Требует заголовок `ray-token` (JWT из Auth API) для операций
    записи.
  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: Комментарий не найден или удален

````