# Instagram Travel Hashtag Analytics Scraper

**Use case:** 

Analyze Instagram travel hashtags with total posts, average likes, comments, and views per hashtag. Export structured analytics to JSON or CSV.

## Input

```json
{
  "hashtags": [
    "travel",
    "wanderlust",
    "travelgram"
  ],
  "maxItems": 50,
  "includeTopPosts": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "hashtagName": {
    "label": "Hashtag",
    "format": "text"
  },
  "hashtagUrl": {
    "label": "URL",
    "format": "link"
  },
  "totalPosts": {
    "label": "Total Posts",
    "format": "text"
  },
  "avgLikes": {
    "label": "Avg Likes",
    "format": "number"
  },
  "avgComments": {
    "label": "Avg Comments",
    "format": "number"
  },
  "avgViews": {
    "label": "Avg Views",
    "format": "number"
  },
  "maxLikes": {
    "label": "Max Likes",
    "format": "number"
  },
  "maxComments": {
    "label": "Max Comments",
    "format": "number"
  },
  "maxViews": {
    "label": "Max Views",
    "format": "number"
  },
  "relatedKeywords": {
    "label": "Related Keywords",
    "format": "array"
  },
  "topPosts": {
    "label": "Top Posts",
    "format": "array"
  },
  "topCreators": {
    "label": "Top Creators",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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