Skip to main content
POST
List TikTok video comments

Description

This endpoint allows you to fetch comments from a specific TikTok video. It supports pagination to retrieve all comments and includes nested replies for each comment.

Endpoint

POST /api/v1/get-tiktok-video-comments

Request Headers

Request Body

The url must be a valid TikTok video URL, e.g., https://www.tiktok.com/@username/video/1234567890 or https://vm.tiktok.com/ZMhKxyz/

Responses

Success (200 OK)

Returns a JSON object containing an array of comments with user information, engagement metrics, and pagination details.
Response Headers:
  • Content-Type: application/json
  • X-RateLimit-Limit: The rate limit for the user.
  • X-RateLimit-Remaining: The remaining number of requests for the user.

Error Responses

400 Bad Request

Indicates an issue with the request parameters.
Possible error messages:
  • Invalid JSON in request body
  • 'url' parameter is required and must be a non-empty string.
  • Invalid TikTok video URL format.
  • The comments service could not process the provided URL.
  • The comments service reported an issue.

401 Unauthorized

API key is missing, invalid, or inactive.

403 Forbidden

API key does not have enough credits.

404 Not Found

Comments could not be found for the video.

500 Internal Server Error

An unexpected error occurred on the server.
Possible error messages:
  • Service not configured. Please contact support.
  • Service authentication failed. Please contact support.
  • An unexpected server error occurred...

502 Bad Gateway

Indicates an issue with an upstream service.
Possible error messages:
  • The comments service is currently unavailable.
  • Received invalid data structure from comments service.
  • Error fetching comments data from the upstream service.

503 Service Unavailable

Rate limit exceeded with an upstream service.

Example Request

cURL

Node.js (fetch)

Notes

  • Use the cursor field from the response to paginate through all comments.
  • The hasMore field indicates whether there are additional pages available.
  • Each comment includes engagement metrics (digg_count = likes on the comment).
  • The reply_comment array contains nested replies to each comment.
  • Comments are returned in reverse chronological order (newest first) by default.
  • The total field provides the approximate total number of comments available.

Credit Cost

This endpoint costs 10 credits per successful request. For more details, see our Credit Costs page.

Rate Limiting

This endpoint is subject to standard API rate limits. Check the X-RateLimit-Limit and X-RateLimit-Remaining headers in the response to monitor your usage.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
url
string<uri>
required
cursor
number

Cursor for pagination.

count
number

Number of comments per page.

requestSource
enum<string>

Optional identifier describing where the API request originated.

Available options:
API,
WEB,
MAKE_DOT_COM,
ZAPIER,
N8N,
PLAYGROUND,
DEFAULT_AUTOMATION,
AGENT_PREVIEW,
AGENT_LIVE,
AUTOPILOT,
STUDIO

Response

TikTok comments retrieved.

comments
object[]
cursor
number | null
hasMore
boolean | null
total
integer | null