# Instagram Reels vs Feed Engagement Scraper

**Use case:** 

Split Instagram engagement by format: feed posts measured by followers and Reels by views, plus average views and content contribution per creator.

## Input

```json
{
  "usernames": [
    "natgeo"
  ]
}
```

## Output

```json
{
  "creator.username": {
    "label": "Username",
    "format": "text"
  },
  "engagement.feed_avg_engagement": {
    "label": "Feed avg engagement",
    "format": "number"
  },
  "engagement.clips_avg_engagement": {
    "label": "Clips avg engagement",
    "format": "number"
  },
  "engagement.clips_avg_views": {
    "label": "Clips avg views",
    "format": "number"
  },
  "engagement.engagement_skew_clips_over_feed": {
    "label": "Clips/feed skew",
    "format": "number"
  },
  "engagement.avg_interactions_per_content": {
    "label": "Avg interactions per content",
    "format": "number"
  },
  "engagement.posts_contribution_pct": {
    "label": "Feed contribution (%)",
    "format": "number"
  },
  "engagement.clips_contribution_pct": {
    "label": "Clips contribution (%)",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Engagement Scraper](https://apify.com/silentflow/instagram-engagement-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/silentflow/instagram-engagement-scraper) to learn more, explore other use cases, and run it yourself.