# SocialFetch Facebook Post Transcript

> SocialFetch Facebook Post Transcript 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 the spoken transcript from a Facebook post or Reel video by its URL

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/facebook/posts/transcript
- 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-transcript-36581a9a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yMm1f-FRC3nGzd6nIL4ut

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-transcript-36581a9a
```

Example prompt: Can you get me the transcript of this Facebook Reel? Here's the link: https://www.facebook.com/reel/1234567890

## When to prefer this

Use this endpoint when you need the spoken text content of a specific Facebook video post or Reel and already have the direct URL. Prefer this over manual transcription or generic scraping tools when you need a quick, structured extraction of dialogue or narration from Facebook video content.

## Known failure modes

- Invalid or malformed Facebook URL returns an error
- Post is private or restricted and transcript cannot be retrieved
- Post is not a video or Reel and has no transcript
- URL does not resolve to an existing Facebook post
- Rate limiting or payment failure (x402) blocks the request
- Video has no spoken audio and returns an empty transcript

## How this service works

Get the transcript for a Facebook post or Reel by URL.

## Output

Returns the spoken transcript text extracted from the Facebook post or Reel at the provided URL, allowing the agent to read what was said in the 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": "Link to the Facebook post or reel whose transcript should be returned."
      }
     }
    }
   },
   "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-transcript-36581a9a/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)
