# Extract viral cooking reel transcripts and captions

**Use case:** 

Turn any list of cooking or recipe reels into structured data: captions, like/comment counts, video URLs, and word-for-word transcripts. Built for recipe creato

## Input

```json
{
  "reelUrls": [
    "https://www.instagram.com/reel/EXAMPLE1/",
    "https://www.instagram.com/reel/EXAMPLE2/"
  ],
  "includeTranscription": true
}
```

## Output

```json
{
  "url": {
    "label": "Reel URL"
  },
  "username": {
    "label": "Username"
  },
  "caption": {
    "label": "Caption"
  },
  "likesCount": {
    "label": "Likes"
  },
  "commentsCount": {
    "label": "Comments"
  },
  "transcript": {
    "label": "Transcript"
  },
  "videoUrl": {
    "label": "Video url"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Reel Analyzer](https://apify.com/electrifying_haircut/instagram-reel-analyzer) with a specific input configuration. Visit the [Actor detail page](https://apify.com/electrifying_haircut/instagram-reel-analyzer) to learn more, explore other use cases, and run it yourself.