Douyin
Douyin Comment Replies API
Replies under a comment. Costs 1 credit per request.
POST/api/v1/douyin/video/comment-replies
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonaweme_idstringrequiredVideo id.
comment_idstringrequiredComment id, taken from a comments response.
Example: 7436619707668759306
cursorintegerPagination cursor from a previous response. Omit for the first page.
countintegerItems to return per page. 1-50.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.douyin.request("/api/v1/douyin/video/comment-replies", {"aweme_id": "...", "comment_id": "7436619707668759306"})
print(result)Response
"data": "<not captured yet - run this endpoint in the playground for a live example>",
"response_time": "<seconds taken by the call>",
"credits_used": 1,
"credits_remaining": "<your balance after the call>"
}