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