한국어
Appearance
파일의 최상위 댓글을 생성 시간순으로 반환합니다. 커서 페이지네이션을 사용합니다.
id
string
next
prev
INFO
next와 prev를 모두 지정하지 않으면, 가장 최근에 생성된 댓글 25개를 반환합니다.
200 OK를 반환합니다.
200 OK
data
array
data[].id
Example: 2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6
2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6
data[].content
string?
Example: Please tighten the logo safe area.
Please tighten the logo safe area.
data[].anchor
object?
data[].duration
number?
Example: 12400
12400
data[].createdAt
Example: 2026-04-10 08:00:00.000000
2026-04-10 08:00:00.000000
data[].updatedAt
Example: 2026-04-10 08:10:00.000000
2026-04-10 08:10:00.000000
data[].file
object
data[].file.id
Example: 8fe89e5a-1d8f-4302-8437-fb0390ecf8eb
8fe89e5a-1d8f-4302-8437-fb0390ecf8eb
data[].author
data[].author.id
Example: f6035d1a-29df-4d80-8d72-f1bbdddfb6ff
f6035d1a-29df-4d80-8d72-f1bbdddfb6ff
data[].author.name
Example: Jin Seo
Jin Seo
data[].author.avatarUrl
Example: https://cdn.youvico.com/avatar/jin.png
https://cdn.youvico.com/avatar/jin.png
page
page.next
Example: null
null
page.prev
Example: MjAyNi0wNC0xMFQwODowMDowMC4wMDBa
MjAyNi0wNC0xMFQwODowMDowMC4wMDBa
curl 'https://api.youvico.com/api/files/8fe89e5a-1d8f-4302-8437-fb0390ecf8eb/comments' \ -H 'Authorization: Bearer YOUR_API_KEY'
{ "data": [ { "id": "2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6", "content": "Please tighten the logo safe area.", "anchor": null, "duration": 12400, "createdAt": "2026-04-10 08:00:00.000000", "updatedAt": "2026-04-10 08:10:00.000000", "file": { "id": "8fe89e5a-1d8f-4302-8437-fb0390ecf8eb" }, "author": { "id": "f6035d1a-29df-4d80-8d72-f1bbdddfb6ff", "name": "Jin Seo", "avatarUrl": "https://cdn.youvico.com/avatar/jin.png" } } ], "page": { "next": null, "prev": "MjAyNi0wNC0xMFQwODowMDowMC4wMDBa" } }
삭제된 최상위 댓글도 남아 있는 답글이 있으면 반환될 수 있습니다. 삭제된 댓글이 반환될 때 content, anchor, duration, author는 null입니다.
content
anchor
duration
author
댓글 목록 Tier 4
파일의 최상위 댓글을 생성 시간순으로 반환합니다. 커서 페이지네이션을 사용합니다.
요청
경로
idstringrequired쿼리
nextstringprevstringINFO
next와prev를 모두 지정하지 않으면, 가장 최근에 생성된 댓글 25개를 반환합니다.응답
200 OK를 반환합니다.dataarraydata[].idstringExample:
2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6data[].contentstring?Example:
Please tighten the logo safe area.data[].anchorobject?data[].durationnumber?Example:
12400data[].createdAtstringExample:
2026-04-10 08:00:00.000000data[].updatedAtstringExample:
2026-04-10 08:10:00.000000data[].fileobjectdata[].file.idstringExample:
8fe89e5a-1d8f-4302-8437-fb0390ecf8ebdata[].authorobject?data[].author.idstringExample:
f6035d1a-29df-4d80-8d72-f1bbdddfb6ffdata[].author.namestringExample:
Jin Seodata[].author.avatarUrlstring?Example:
https://cdn.youvico.com/avatar/jin.pngpageobjectpage.nextstring?Example:
nullpage.prevstring?Example:
MjAyNi0wNC0xMFQwODowMDowMC4wMDBa예시
INFO
삭제된 최상위 댓글도 남아 있는 답글이 있으면 반환될 수 있습니다. 삭제된 댓글이 반환될 때
content,anchor,duration,author는null입니다.