# SocialFetch Facebook Post Fetcher

> SocialFetch Facebook Post Fetcher 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 metadata, content, and optionally comments or transcripts for a public Facebook post or Reel by URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/facebook/posts
- 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-fetcher-8ffa5422
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bmvoyZDedq69l5Q4hErBF

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-fetcher-8ffa5422
```

Example prompt: Can you pull the full content and top comments from this Facebook post for me? https://www.facebook.com/someuser/posts/1234567890 — also grab the video transcript if there is one.

## When to prefer this

Use this endpoint when you need to retrieve structured data from a specific public Facebook post or Reel by its permalink URL. Prefer this over generic web scrapers when you need Facebook-specific fields like engagement metrics, author info, or video transcripts. Choose this when building social media monitoring pipelines, content archival tools, or competitive intelligence workflows that target Facebook content.

## Known failure modes

- Post URL is private or requires login — returns error indicating content is inaccessible
- Invalid or malformed Facebook URL — returns validation error
- Post has been deleted or taken down — returns not found error
- Transcript unavailable for non-video posts or videos without captions
- Comments unavailable if disabled by the post author
- Rate limiting if called too frequently

## How this service works

Get a Facebook post or Reel by URL.

## Output

Returns structured data about the Facebook post or Reel including content text, author info, engagement metrics, and optionally a sample of top-level comments and/or a plain-text transcript of any video content.

## 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Public permalink to the Facebook post or reel."
      },
      "includeComments": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "When true, includes a sample of top-level comments when available."
      },
      "includeTranscript": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "When true, includes a plain-text transcript when available for the video."
      }
     }
    }
   },
   "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-fetcher-8ffa5422/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)
