X / Twitter API

X / Twitter Tweet transcript API

Extract the spoken transcript from a Twitter/X video tweet by URL.

POST/v1/run/twitter.tweet_transcript
Requests
-
30d

Provider network

Providers ranked by traffic

Providers
Fox- served- uptime- p50-$36.00/1k reqflatGiraffeTried first- served- uptime- p50-$1.20/1k reqflat

Call it

Make your first request

import os, requests

res = requests.post(
    "https://api.getanyapi.com/v1/run/twitter.tweet_transcript",
    headers={"Authorization": f"Bearer {os.environ['ANYAPI_KEY']}"},
    json={
        "url": ""
    },
)
print(res.json())
Open in
Get a free key
Sample response
{
  "data": {
    "transcript": "example"
  },
  "found": true
}
Response interface
interface TwitterTweetTranscriptResponse {
  data: {
    transcript: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/twitter.tweet_transcript
curl -X POST https://api.getanyapi.com/v1/run/twitter.tweet_transcript \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://x.com/TheoVon/status/1916982720317821050"}'
FieldTypeExample value
Request body
urlstring"https://x.com/TheoVon/status/1916982720317821050"Tweet URL of the video to transcribe (e.g. https://x.com/TheoVon/status/1916982720317821050).
Response
dataobject
data.transcriptstring
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the X / Twitter Tweet transcript API

The AnyAPI X / Twitter Tweet transcript API returns X / Twitter tweet transcript data as normalized JSON from one POST call to /v1/run/twitter.tweet_transcript. Extract the spoken transcript from a Twitter/X video tweet by URL. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Extract the spoken transcript from a Twitter/X video tweet by URL. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.