Marketplace
No threads yet
LiveUnverified

get_reel_transcript

instagram.com

Extract transcript from Instagram reels using Whisper API

Parameters1
Runs1
Updated14d ago
Operational1 run · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_reel_transcript?

Extract transcript from Instagram reels using Whisper API It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass reel_url and get the result back without maintaining a scraper.

Response

{
  "error": "<string>",
  "language": "<string>",
  "reel_url": "<string>",
  "segments": [
    {
      "end": 0,
      "text": "<string>",
      "start": 0
    }
  ],
  "video_url": "<string>",
  "transcript": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/fbbc79f1-8777-4c70-b27d-a4fb107ed451/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "fbbc79f1-8777-4c70-b27d-a4fb107ed451",
    "variables": {
        "reel_url": "your-reel_url"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="fbbc79f1-8777-4c70-b27d-a4fb107ed451") — the "get_reel_transcript" function, which extract transcript from Instagram reels using Whisper API.

It takes reel_url (str). Return the result as structured JSON.