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": {}
}Extract the transcript from a Twitter/X video
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": {}
}curl -X GET "https://yoinkit.ai/api/v1/openclaw/twitter/transcript?url=https://twitter.com/user/status/123456789" \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"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"
}
}