# Twitter Tweet Transcript

> Twitter Tweet Transcript is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches the full transcript or text content of a Twitter/X tweet given its URL

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/twitter/tweet/transcript
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-tweet-transcript-cc7204a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7N0ak8MkoVX430SSkeOga

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 twitter-tweet-transcript-cc7204a1
```

Example prompt: Can you grab the full transcript of this tweet for me? https://twitter.com/elonmusk/status/1234567890

## When to prefer this

Use this endpoint when you need to programmatically extract the text content of a specific tweet given its URL, especially in agent workflows that need to quote, analyze, archive, or fact-check tweet content without requiring a Twitter API key or OAuth flow. Prefer this over manual scraping or the official Twitter API when you want a simple pay-per-use extraction that handles Twitter's anti-scraping measures.

## Known failure modes

- Tweet URL is invalid or malformed — returns an error
- Tweet has been deleted or is unavailable — may return empty or error response
- Tweet is from a protected/private account — content may not be accessible
- Rate limiting or Twitter anti-scraping measures may cause failures
- Missing required 'url' query parameter — returns validation error

## How this service works

Transcript

## Output

Returns the full text transcript/content of the specified tweet, extracted from the given Twitter/X URL.

## 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",
       "description": "Tweet URL"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-tweet-transcript-cc7204a1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
