# SocialFetch Twitter Video Transcript

> SocialFetch Twitter Video 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 of a video embedded in a tweet, given the tweet's URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/twitter/tweets/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-twitter-video-transcript-7565d72c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mp_D_iPxJYaSJeNcQu5Yh

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-twitter-video-transcript-7565d72c
```

Example prompt: Can you get me the transcript of this tweet video: https://twitter.com/elonmusk/status/1234567890123456789 — I want to read what was said without watching it.

## When to prefer this

Use this endpoint when you need the spoken content of a video tweet as text, particularly for summarization, accessibility, search indexing, or analysis workflows. Prefer this over general speech-to-text services when the source is specifically a Twitter/X video URL and you want a single API call without handling video download and audio extraction yourself.

## Known failure modes

- Tweet URL is invalid or malformed — returns error about bad input
- Tweet does not contain a video — returns error indicating no video found
- Tweet is from a private or suspended account — returns access error
- Video has no available transcript or captions — returns empty or error response
- Tweet URL points to a deleted tweet — returns not-found error
- Rate limiting or payment failure — returns 402 or 429 status

## How this service works

Get the transcript for a video tweet by URL.

## Output

Returns the spoken transcript of the video contained in the specified tweet, as text extracted from the video's audio or captions.

## 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": "Tweet permalink or numeric id."
      }
     }
    }
   },
   "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-twitter-video-transcript-7565d72c/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)
