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[].startTimenumber?
開始タイムスタンプ。動画・YouTubeはミリ秒、PDF・Imageはページ番号

Example: null

data[].endTimenumber?
終了タイムスタンプ。動画・YouTubeはミリ秒、PDF・Imageはページ番号

Example: null

data[].drawingboolean
描画が添付されているか

Example: false

data[].createdAtstring
返信作成日時

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

data[].updatedAtstring
返信最終更新日時

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

data[].versionobject
親バージョン
data[].version.idstring
親バージョン ID

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

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.",
      "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"
  }
}