# StableSocial TikTok Post Comments

> StableSocial TikTok Post Comments is a paid API for AI agents from socialx402.com, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Fetches comments from a specified TikTok post, returning user-generated comment data on demand with pay-per-request pricing.

## Facts

- Endpoint: POST https://socialx402.com/api/tiktok/post-comments
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-tiktok-post-comments-3f5d4c2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JX7gms_M7erakwiG_rc3L

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-post-comments-3f5d4c2c -d '<json body>'
```

Example prompt: Pull all the comments from this TikTok video — https://www.tiktok.com/@username/video/1234567890 — so I can see what people are saying about it.

## When to prefer this

Use this endpoint when you need on-demand, no-subscription access to TikTok post comments without managing API keys or OAuth flows. Ideal for one-off analysis, agent workflows, or low-volume comment fetching where a monthly subscription is impractical.

## Known failure modes

- Invalid or inaccessible TikTok post URL returns an error
- Post has been deleted or made private, returning not found
- Payment of $0.06 USDC not received, request rejected
- Rate limiting if the post has an extremely large number of comments
- TikTok platform changes may temporarily break scraping

## 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 post, including commenter usernames, comment text, timestamps, like counts, and possibly reply counts or nested replies.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "post_id": {
   "type": "string",
   "minLength": 1,
   "description": "TikTok post/video ID"
  },
  "order_by": {
   "enum": [
    "date_desc",
    "date_asc",
    "id_desc"
   ],
   "type": "string",
   "description": "Sort order"
  },
  "profile_id": {
   "type": "string",
   "minLength": 1,
   "description": "TikTok profile username"
  },
  "max_comments": {
   "type": "integer",
   "default": 50,
   "maximum": 300,
   "minimum": -9007199254740991,
   "description": "Maximum number of comments"
  },
  "max_page_size": {
   "type": "integer",
   "default": 50,
   "maximum": 9007199254740991,
   "minimum": -9007199254740991,
   "description": "Results per page"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-tiktok-post-comments-3f5d4c2c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from socialx402.com](https://www.zero.xyz/host/socialx402.com/llms.txt)
