# SocialFetch Facebook Post Comments Lister

> SocialFetch Facebook Post Comments 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).

Fetches and paginates comments on a Facebook post or Reel given its URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/facebook/posts/comments
- 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-post-comments-lister-ca4018ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tKCFu2eK4e46zrVVuG0fo

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-post-comments-lister-ca4018ef
```

Example prompt: Can you fetch the comments on this Facebook post for me? Here's the URL: https://www.facebook.com/someuser/posts/1234567890

## When to prefer this

Use this endpoint when you need to read or analyze the public comment section of a specific Facebook post or Reel by URL. Prefer it over scraping directly when you need structured, paginated comment data without building your own Facebook scraper. Best for social listening, sentiment analysis pipelines, or content moderation research on Facebook content.

## Known failure modes

- Invalid or non-public Facebook post URL returns an error or empty result
- Post has comments disabled, returning an empty list
- Invalid cursor value causes pagination failure
- Rate limiting or access restrictions from Facebook result in errors
- Facebook Reel or post has been deleted or made private since URL was captured

## How this service works

List comments on a Facebook post or Reel by URL.

## Output

Returns a paginated list of comments on the specified Facebook post or Reel, including comment text, commenter info, and an opaque cursor for fetching additional pages of results.

## 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",
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Link to the Facebook post or reel whose comments should be listed."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Opaque cursor from a previous response to fetch the next page."
      },
      "feedbackId": {
       "type": "string",
       "minLength": 1,
       "description": "Optional Facebook feedback identifier for the target post; when available it can improve lookup performance."
      }
     }
    }
   },
   "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-post-comments-lister-ca4018ef/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)
