Skip to content

List Replies Tier 4

GET/api/comments/:id/repliesCopied!

Returns direct replies to a comment. Uses cursor pagination.

This endpoint works even when the parent comment has been deleted.

Request

Path

idstringrequired
Comment ID

Query

nextstring
Cursor for the next page
prevstring
Cursor for the previous page

INFO

If neither next nor prev is specified, the 25 most recently created replies are returned.

Response

Returns 200 OK.

dataarray
Replies
data[].idstring
Reply ID

Example: 84202e58-bf8c-471d-af07-0ab0f5b0f82b

data[].contentstring
Reply text

Example: Updated and re-exported.

data[].startTimenumber?
Start timestamp. Milliseconds for video/YouTube, page number for PDF/Image

Example: null

data[].endTimenumber?
End timestamp. Milliseconds for video/YouTube, page number for PDF/Image

Example: null

data[].drawingboolean
Whether a drawing is attached

Example: false

data[].createdAtstring
Reply creation date

Example: 2026-04-10 08:10:00.000000

data[].updatedAtstring
Reply last updated date

Example: 2026-04-10 08:11:00.000000

data[].versionobject
Parent version
data[].version.idstring
Parent version ID

Example: 8fe89e5a-1d8f-4302-8437-fb0390ecf8eb

data[].authorobject?
Comment author
data[].author.idstring
Author user ID

Example: c5c1c5d7-54f0-4d88-b78d-8f3c3a0d9bea

data[].author.namestring
Author display name

Example: Haneul Park

data[].author.avatarUrlstring?
Author avatar URL

Example: null

pageobject
Pagination cursors
page.nextstring?
Cursor for the next page

Example: null

page.prevstring?
Cursor for the previous page

Example: MjAyNi0wNC0xMFQwODoxMDowMC4wMDBa

Example

bash
curl 'https://api.youvico.com/api/comments/2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6/replies' \
  -H 'Authorization: Bearer YOUR_API_KEY'
json
{
  "data": [
    {
      "id": "84202e58-bf8c-471d-af07-0ab0f5b0f82b",
      "content": "Updated and re-exported.",
      "startTime": null,
      "endTime": null,
      "drawing": false,
      "createdAt": "2026-04-10 08:10:00.000000",
      "updatedAt": "2026-04-10 08:11:00.000000",
      "version": {
        "id": "8fe89e5a-1d8f-4302-8437-fb0390ecf8eb"
      },
      "author": {
        "id": "c5c1c5d7-54f0-4d88-b78d-8f3c3a0d9bea",
        "name": "Haneul Park",
        "avatarUrl": null
      }
    }
  ],
  "page": {
    "next": null,
    "prev": "MjAyNi0wNC0xMFQwODoxMDowMC4wMDBa"
  }
}