# StableSocial TikTok Comment Replies

> StableSocial TikTok Comment Replies is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Fetches replies to a specific comment on a TikTok video, with pagination support.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/tiktok/video/comment/replies
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-tiktok-comment-replies-49553d3f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lXDlB8g8jtSBm5RpTjMUy

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stablesocial-tiktok-comment-replies-49553d3f -d '<json body>'
```

Example prompt: Can you pull all the replies to comment ID 7234567890123456789 on this TikTok video https://www.tiktok.com/@creator/video/7234567890123456789?

## When to prefer this

Choose this endpoint when you need to retrieve the reply thread under a specific TikTok comment and you already have the comment ID and video URL (typically from the TikTok Post Comments endpoint). It supports cursor-based pagination for fetching large reply threads. Prefer this over generic social scraping tools when you specifically need TikTok comment reply data without managing auth, subscriptions, or scraping infrastructure yourself.

## Known failure modes

- Invalid or expired TikTok video URL returns an error or empty result
- Invalid comment_id returns no replies or an error
- Deleted or private video/comment returns no data
- Incorrect cursor value may return duplicate or missing replies
- TikTok rate-limiting or blocking may cause failed scrapes
- Missing required fields (url or comment_id) causes a validation error

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a list of reply objects for the specified TikTok comment, including reply text, author info, like counts, timestamps, and a cursor value for fetching the next page of replies.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "minLength": 1,
   "description": "TikTok video URL. This is the url from the comments endpoint."
  },
  "cursor": {
   "type": "number",
   "description": "Cursor to get more replies. Get 'cursor' from previous response."
  },
  "comment_id": {
   "type": "string",
   "minLength": 1,
   "description": "TikTok comment ID. This is the cid from the comments endpoint."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-tiktok-comment-replies-49553d3f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
