# StableSocial TikTok Video Comments

> StableSocial TikTok Video Comments 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 comments on a TikTok video by URL, with optional pagination and trimming.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/tiktok/video/comments
- 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-video-comments-b6dcace6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9UqNV0YupoFDinyeKmMvK

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-video-comments-b6dcace6 -d '<json body>'
```

Example prompt: Pull the comments from this TikTok video — https://www.tiktok.com/@user/video/1234567890 — and give me a trimmed response so I can see what people are saying about it.

## When to prefer this

Choose this endpoint when you need pay-per-request, no-subscription access to TikTok video comments without setting up OAuth or platform API credentials. Ideal for one-off scraping tasks, agent workflows that need comment data on demand, or when TikTok's official API access is unavailable. Prefer over alternatives when you need pagination support and a simple JSON POST interface with USDC micropayment billing.

## Known failure modes

- Invalid or deleted TikTok video URL returns an error or empty result
- Expired or invalid cursor value causes pagination failure
- Video is private or region-restricted, returning no comments
- Rate limiting or TikTok-side blocks may cause intermittent failures
- Malformed URL input returns 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 comments on the specified TikTok video, each including commenter details (username, avatar), comment text, timestamp, and like counts. If trim is true, returns a condensed subset of fields. Also includes a cursor value for fetching the next page of comments via subsequent requests.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "minLength": 1,
   "description": "TikTok video URL"
  },
  "trim": {
   "type": "boolean",
   "description": "Set to true to get a trimmed response"
  },
  "cursor": {
   "type": "number",
   "description": "Cursor to get more comments. Get 'cursor' from previous response."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-tiktok-video-comments-b6dcace6/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)
