# TikTok Video Comment Replies API (https://www.socialcrawl.dev/platforms/tiktok/video-comment-replies) > Fetches replies to a specific TikTok comment by its ID. Returns an array of comment objects each with text, user info, and creation time. Paginate with the cursor from the previous response. TL;DR: `GET /v1/tiktok/video/comment/replies` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `comment_id` | yes | TikTok comment ID. This is the cid from the comments endpoint. | | `url` | yes | TikTok video URL. This is the url from the comments endpoint. | | `cursor` | no | Cursor to get more replies. Get 'cursor' from previous response. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tiktok/video/comment/replies?comment_id=7623828115408274207&url=https%3A%2F%2Fwww.tiktok.com%2F%40stoolpresidente%2Fvideo%2F7623818255903329566" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get replies to a TikTok comment? Send a GET request to /v1/tiktok/video/comment/replies with the comment_id (from the Comments endpoint's cid) and the video url. SocialCrawl returns a paginated list of reply comments with text, author, and timestamps. ### Where do I get the TikTok comment id from? Call /v1/tiktok/post/comments first and take the cid field from any comment in the response. Pass that value as the comment_id parameter on the replies endpoint along with the original video URL. ### What fields does each reply include? Each reply returns comment id, author username and display name, reply text, like count, creation timestamp, and the parent comment id so you can reconstruct the thread. ### How do I paginate through all TikTok replies? Read the cursor field from the response and pass it as the cursor parameter on your next request. Repeat until cursor is 0 — you then have every public reply under that comment. ### How much does the TikTok Comment Replies API cost? Each request costs 1 credit on the standard tier regardless of how many replies are returned per page. New accounts get 100 free credits with no credit card required. See the full TikTok API: https://www.socialcrawl.dev/platforms/tiktok ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to get TikTok comment replies with the SocialCrawl API - What is the SocialCrawl TikTok Comment Replies endpoint?