# StableSocial Facebook Post Comments

> StableSocial Facebook 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-15).

Fetches comments on a specified Facebook post via pay-per-request social data API

## Facts

- Endpoint: POST https://socialx402.com/api/facebook/post-comments
- 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-post-comments-f968a9a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z1NFid-myDFZR0lgxG62l

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

Example prompt: Can you pull all the comments from this Facebook post for me: https://www.facebook.com/SomeBrand/posts/1234567890 — I want to see what people are saying about it.

## When to prefer this

Use this endpoint when you need to retrieve comments from a specific Facebook post without setting up OAuth or a subscription. Ideal for one-off analysis, sentiment scraping, or monitoring public reactions to a Facebook post. Best suited when pay-per-request pricing is acceptable and no persistent API credentials are desired.

## Known failure modes

- Post URL or ID not found or invalid — returns error indicating bad input
- Post is private or restricted and not accessible — returns access/permission error
- Facebook rate limiting or blocking causes failure — returns upstream error
- Malformed request body — returns 400-style validation error
- Payment not fulfilled — returns 402 Payment Required

## 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 Facebook post, including commenter names, comment text, timestamps, and potentially nested replies or reply counts.

## Example request

```json
{
 "post_id": "123456789_987654321",
 "comment_id": "987654321_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"
  },
  "order_by": {
   "enum": [
    "date_desc",
    "date_asc",
    "id_desc"
   ],
   "type": "string",
   "description": "Sort order"
  },
  "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-facebook-post-comments-f968a9a0/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)
