---
title: "List comments on a media item"
method: GET
path: "/media/{mediaId}/comments"
tags: ["Media"]
---

# List comments on a media item

`GET /media/{mediaId}/comments`

Returns the comments attached to a media item in chronological
(oldest-first) order. Each comment's `actor` is expanded; for
actor.type == "user", the `actor.user` object contains the first
name, last name, and email of the commenter.

## Response `200`

Success

- object
  - `data` MediaComment[], required
    - `id` string, uuid, required
    - `mediaId` string, uuid, required
    - `text` string, required
    - `createdAt` number, required
    - `actor` object, required
      - `id` string, uuid, required
      - `type` 'user' | 'api_key' | 'system', required
      - `user` object, nullable
        - `id` string, uuid, required
        - `firstName` string, required
        - `lastName` string, required
        - `email` string, required
        - `avatarUrl` string, nullable
  - `meta` PaginationMeta, required
    - `cursor` string, nullable, required — Opaque cursor for the next page; null when no more results
    - `total` integer — Total matching results across all pages; included when cheaply computable

## Other responses

- `401` — Authentication required
- `403` — Insufficient permissions
- `404` — Resource not found
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.net/voltairlabs/apis/voltair-api.md) · [All operations](https://skmtc.net/voltairlabs/apis/voltair-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voltairlabs/voltair-api/revisions/be08f4f706f5/schema)
