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

Parameters

url
string
required
The full Instagram Reel or 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/instagram/transcript?url=https://instagram.com/reel/DHsD6HGqJhp" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "success": true,
    "transcripts": [
      {
        "id": "3597267389859272809",
        "shortcode": "DHsD6HGqJhp",
        "text": "Let's fry up the perfect bunzel. Beautiful. Everybody, shh. The perfect bunzel. Let me show you my bunzel. When it comes down to bunzel, we make it the crispiest, get the crunch. Heaven."
      }
    ]
  },
  "meta": {
    "platform": "instagram",
    "endpoint": "transcript",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}