# SocialFetch Facebook Comment Replies Lister

> SocialFetch Facebook Comment Replies Lister is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Lists replies to a Facebook comment using a cursor from a previous comment listing call.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/facebook/posts/comments/replies
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-facebook-comment-replies-lister-41826b4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EhvGHwcpZ3GEKfWqa6trm

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 socialfetch-facebook-comment-replies-lister-41826b4f
```

Example prompt: Can you fetch the replies to that Facebook comment? I have the repliesCursor from the previous comment listing call — it's 'Y29tbWVudDoxMjM0NTY3ODk'.

## When to prefer this

Use this endpoint when you already have a repliesCursor from a Facebook post comments listing call and need to retrieve the nested replies on a specific comment. It is specifically designed for paginating through Facebook comment reply threads, including fetching subsequent pages via nextCursor.

## Known failure modes

- Invalid or expired cursor returns an error or empty result
- Cursor from a different endpoint (e.g. post cursor) is rejected as incompatible
- Facebook rate limiting or access restrictions may cause failures
- Comment or parent post may have been deleted, resulting in empty or error response
- Missing required cursor parameter returns a validation error

## How this service works

List replies to a Facebook comment.

## Output

A paginated list of replies to the specified Facebook comment, including reply content, authors, timestamps, and a nextCursor for fetching additional pages of replies.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "cursor"
     ],
     "properties": {
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Comment `repliesCursor` from post comments, or `page.nextCursor` to paginate replies."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-facebook-comment-replies-lister-41826b4f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
