# StableSocial YouTube Video Comments

> StableSocial YouTube 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 YouTube video, with support for ordering by top or newest and pagination via continuation tokens.

## Facts

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

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-youtube-video-comments-9247d783 -d '<json body>'
```

Example prompt: Can you grab the top comments from this YouTube video for me? https://www.youtube.com/watch?v=dQw4w9WgXcQ — I want them sorted by top comments.

## When to prefer this

Choose this endpoint when you need pay-per-request YouTube comment scraping without authentication, subscriptions, or API key management. Ideal for agents that occasionally need comment data from YouTube videos without committing to a platform API quota. Best when combined with other StableSocial endpoints for multi-platform social listening.

## Known failure modes

- Invalid or inaccessible YouTube URL returns an error
- Comments disabled on the video result in an empty or error response
- Invalid continuationToken causes pagination failure
- Rate limits or platform-side blocking may cause intermittent failures
- Deleted or private videos return no data

## 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 from the specified YouTube video, ordered by top engagement or newest first. Each comment typically includes the comment text, author, and engagement metrics. A continuationToken is provided to paginate and retrieve the next batch of comments.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "minLength": 1,
   "description": "YouTube video URL"
  },
  "order": {
   "enum": [
    "top",
    "newest"
   ],
   "type": "string",
   "description": "Order of comments"
  },
  "continuationToken": {
   "type": "string",
   "description": "Continuation token to get more comments. Get 'continuationToken' from previous response."
  }
 }
}
```

## More

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