Skip to content

답글 목록 Tier 4

GET/api/comments/:id/repliesCopied!

댓글의 직접 답글을 반환합니다. 커서 페이지네이션을 사용합니다.

상위 댓글이 삭제된 경우에도 이 엔드포인트를 사용할 수 있습니다.

요청

경로

idstringrequired
댓글 ID

쿼리

nextstring
다음 페이지 커서
prevstring
이전 페이지 커서

INFO

nextprev를 모두 지정하지 않으면, 가장 최근에 생성된 답글 25개를 반환합니다.

응답

200 OK를 반환합니다.

dataarray
답글
data[].idstring
답글 ID

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

data[].contentstring
답글 내용

Example: Updated and re-exported.

data[].anchorobject?
파일 내 시간, 페이지 또는 영역을 나타내는 앵커 데이터
data[].durationnumber?
답글과 연결된 타임스탬프 또는 구간 값

Example: null

data[].createdAtstring
답글 생성 일시

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

data[].updatedAtstring
답글 마지막 수정 일시

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

data[].authorobject?
댓글 작성자
data[].author.idstring
작성자 사용자 ID

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

data[].author.namestring
작성자 표시 이름

Example: Haneul Park

data[].author.avatarUrlstring?
작성자 아바타 URL

Example: null

pageobject
페이지네이션 커서
page.nextstring?
다음 페이지 커서

Example: null

page.prevstring?
이전 페이지 커서

Example: MjAyNi0wNC0xMFQwODoxMDowMC4wMDBa

예시

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.",
      "anchor": null,
      "duration": null,
      "createdAt": "2026-04-10 08:10:00.000000",
      "updatedAt": "2026-04-10 08:11:00.000000",
      "author": {
        "id": "c5c1c5d7-54f0-4d88-b78d-8f3c3a0d9bea",
        "name": "Haneul Park",
        "avatarUrl": null
      }
    }
  ],
  "page": {
    "next": null,
    "prev": "MjAyNi0wNC0xMFQwODoxMDowMC4wMDBa"
  }
}