# StableSocial Facebook Comment Replies

> StableSocial Facebook Comment Replies is a paid API for AI agents from socialx402.com, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Fetches reply comments on a specific Facebook comment, returning nested reply thread data via pay-per-request access.

## Facts

- Endpoint: POST https://socialx402.com/api/facebook/comment-replies
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-facebook-comment-replies-ddd4fd4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6uSOnJlaRoDKk6rCKn-wg

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-facebook-comment-replies-ddd4fd4e -d '<json body>'
```

Example prompt: Pull all the replies to this Facebook comment (comment ID 123456789) on the post at facebook.com/examplepage/posts/987654321 so I can see what people are saying in the thread.

## When to prefer this

Use this endpoint when you specifically need the reply sub-thread of a Facebook comment, not the top-level comments on a post. Ideal for sentiment analysis, community monitoring, or social research workflows requiring nested Facebook engagement data without OAuth or subscription overhead.

## Known failure modes

- Comment ID not found or deleted — returns 404 or empty result
- Private or restricted Facebook content inaccessible — returns permission error
- Invalid or malformed comment/post ID — returns 400 bad request
- Rate limiting or Facebook anti-scraping blocks — returns 429 or service error
- Payment failure via x402 protocol — request rejected before execution

## 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 an array of reply objects for the specified Facebook comment, each including reply text, author name/ID, timestamp, like count, and any nested reply metadata.

## Example request

```json
{
 "post_id": "987654321",
 "comment_id": "123456789",
 "max_page_size": 25
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "post_id": {
   "type": "string",
   "minLength": 1,
   "description": "Facebook post ID (needed to trigger reply loading)"
  },
  "comment_id": {
   "type": "string",
   "minLength": 1,
   "description": "Facebook comment ID"
  },
  "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-facebook-comment-replies-ddd4fd4e/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)
