---
title: "GET /comments/{comment_id}"
method: GET
path: "/comments/{comment_id}"
tags: ["comments"]
---

# GET /comments/{comment_id}

`GET /comments/{comment_id}`

Gets a comment by ID

## Path parameters

- `comment_id` string, required

## Response `200`

Success

- CommentResponse
  - `data` Comment[]
    - `id` string, required
    - `entity_id` string, required
    - `entity_type` 'Track' | 'FanClub' | 'Event', required — Type of entity that can be commented on
    - `user_id` string
    - `message` string, required
    - `mentions` CommentMention[]
      - `user_id` integer, required
      - `handle` string, required
    - `track_timestamp_s` integer
    - `react_count` integer, required
    - `reply_count` integer, required
    - `is_edited` boolean, required
    - `is_current_user_reacted` boolean
    - `is_artist_reacted` boolean
    - `is_tombstone` boolean
    - `is_members_only` boolean
    - `video_url` string, nullable — Optional URL for a video attachment on this comment
    - `is_muted` boolean
    - `created_at` string, required
    - `updated_at` string
    - `replies` ReplyComment[]
      - `id` string, required
      - `entity_id` string, required
      - `entity_type` 'Track' | 'FanClub' | 'Event', required — Type of entity that can be commented on
      - `user_id` string, required
      - `message` string, required
      - `mentions` CommentMention[]
        - `user_id` integer, required
        - `handle` string, required
      - `track_timestamp_s` integer
      - `react_count` integer, required
      - `is_edited` boolean, required
      - `is_current_user_reacted` boolean
      - `is_artist_reacted` boolean
      - `created_at` string, required
      - `updated_at` string
      - `video_url` string, nullable — Optional URL for a video attachment on this reply
      - `parent_comment_id` integer
    - `parent_comment_id` integer

## Other responses

- `500` — Server error

---

[API](https://skmtc.dev/audius/apis/audius-api.md) · [All operations](https://skmtc.dev/audius/apis/audius-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/audius/audius-api/revisions/940230b2ed3d/schema)
