Comment replies

lookup · $0.0010

The thread behind “View N replies”.

POST https://api.sorina.sh/v1/tiktok/comments/replies

Body

comment_id string
The parent comment — a cid from /comments.
aweme_id string
The video, and required as well: a comment does not identify its own video in this request. Without it upstream answers an empty 200, so we refuse it first.
cursor integer?
Where to start. Defaults to 0.
count integer?
Page size. Defaults to 3.

A type written with ? is optional. Unknown fields are rejected rather than ignored, and the whole body is capped at 64 KiB.

Example

curl -X POST https://api.sorina.sh/v1/tiktok/comments/replies \
  -H "authorization: Bearer $SORINA_KEY" \
  -H 'content-type: application/json' \
  -d '{"comment_id":"7654215767324787489","aweme_id":"7653878641020964128","cursor":0,"count":3}'

What comes back

The same container as /comments: comments, total, cursor, and has_more as an integer.

count is a request, not a promise. A thread of two replies asked for at count: 3 came back with one, total: 2 and cursor: 1 — the platform decides how much of the thread it renders. Page on the cursor it returned.

pages on cursor

Send the value the previous response returned, not one you counted. Pagination has the rest.