---
title: "Get Live Stream Comments"
method: GET
path: "/api/live-streams/{stream_id}/comments"
tags: ["live-streams"]
---

# Get Live Stream Comments

`GET /api/live-streams/{stream_id}/comments`

Get comments for a live stream. Pass `since` for incremental fetching.

## Path parameters

- `stream_id` integer, required

## Query parameters

- `since` string, nullable — ISO timestamp — return only comments after this time

## Response `200`

Successful Response

- LiveStreamComment[]
  - `id` integer, required
  - `stream_id` integer, required
  - `user_id` string, required
  - `comment_text` string, required
  - `rejection_reason` string, nullable
  - `bot_approved` boolean
  - `created_at` string, date-time, required
  - `user` LiveStreamCommentUser — User info for live stream comments.
    - `user_id` string, nullable
    - `first_name` string, nullable
    - `last_name` string, nullable
    - `profile_picture` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/usecreed/apis/creed-api.md) · [All operations](https://skmtc.net/usecreed/apis/creed-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/usecreed/creed-api/versions/523833f9e819/schema)
