Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
twitter
/
transcript
Twitter Transcript
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/twitter/transcript \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "success": true,
    "transcript": "<string>"
  },
  "meta": {}
}

Parameters

url
string
required
The full Twitter/X video URL

Response

success
boolean
Whether the request was successful
data
object
meta
object
Request metadata including credits_used and request_id

Example Request

curl -X GET "https://yoinkit.ai/api/v1/openclaw/twitter/transcript?url=https://twitter.com/user/status/123456789" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "success": true,
    "transcript": "Since you're kind of like a leader in innovation and technology in our world, you know, um do you how do you know that what your convictions are, how do you gauge if what your convictions are are the best for everybody kind of? Like how do you kind of figure that out, you know? It seems like such a challenge."
  },
  "meta": {
    "platform": "twitter",
    "endpoint": "transcript",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}