# TikTok Post Comments API (https://www.socialcrawl.dev/platforms/tiktok/post-comments) > Returns a list of comments on a specific TikTok video. Each comment includes the author username, comment text, like count, reply count, and creation timestamp. TL;DR: `GET /v1/tiktok/post/comments` 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 | | --- | --- | --- | | `url` | yes | Full URL of the TikTok video to fetch comments for | | `cursor` | no | Cursor to get more comments. Get 'cursor' from previous response. | | `trim` | no | Set to true to get a trimmed response | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tiktok/post/comments?url=https%3A%2F%2Fwww.tiktok.com%2F%40stoolpresidente%2Fvideo%2F7623818255903329566" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I scrape TikTok comments with an API? Send a GET request to /v1/tiktok/post/comments with the video URL in the url parameter. SocialCrawl returns a paginated list of comments with text, author handle, like count, reply count, and creation timestamp. ### What fields does each TikTok comment include? Each comment returns the comment id (cid), author username and display name, comment text, like count, reply count, creation timestamp, and a flag for whether the post author pinned the comment. ### How do I get all comments on a TikTok video? Read the cursor field from the response and pass it as the cursor parameter on your next request. Repeat until cursor is 0 or empty — you then have every public comment on the video. ### Can I get replies to a specific TikTok comment? Yes. Use the /v1/tiktok/video/comment/replies endpoint with the comment id (cid) and video URL. Each call costs 1 credit and returns the full reply thread for that comment. ### How much does the TikTok Comments API cost? Each request costs 1 credit on the standard tier regardless of how many comments 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 scrape TikTok comments with the SocialCrawl API - What does the SocialCrawl TikTok Comments endpoint return?