# Find Instagram creators by hashtag

**Use case:** 

Give it a hashtag and get the accounts behind its top posts, each with follower count, engagement rate and public contact details.

## Input

```json
{
  "searchQueries": [],
  "searchHashtags": [
    "guthealth",
    "personaltrainer"
  ],
  "maxSearchPagesPerQuery": 5,
  "maxCountDiscovery": 25,
  "extractEmail": true,
  "extractPhoneNumber": false,
  "extractWebsiteUrl": true,
  "extractBusinessCategory": true,
  "extractPhysicalAddress": false,
  "analyzeQuality": true,
  "minEngagementRate": 0,
  "extractPosts": false,
  "searchContactsInPosts": false,
  "keywords": [],
  "keywordLocation": "bio_or_name",
  "locationKeywords": "",
  "profileLanguage": "any",
  "minFollowers": 3000,
  "maxFollowers": 200000,
  "lastPostDays": 0,
  "lastReelDays": 0,
  "minPostsInPeriod": 0,
  "postsCheckPeriodDays": "30",
  "minMedianViews": 0,
  "viewFollowerRatioMin": 0,
  "viewFollowerRatioMax": 0,
  "contactInfoType": "any",
  "hasWebsite": false,
  "accountType": "any",
  "filterForInfluencers": false,
  "categoryFilter": "any",
  "filterCombination": "AND",
  "mustBeVerified": false,
  "clearSavedData": true,
  "enableOfflineMode": false,
  "excludeAccounts": []
}
```

## Output

```json
{
  "Account": {
    "label": "Instagram account URL",
    "format": "string"
  },
  "Full Name": {
    "label": "Display name",
    "format": "string"
  },
  "Source": {
    "label": "Discovery source",
    "format": "string"
  },
  "Matched By": {
    "label": "Matched by",
    "format": "string"
  },
  "Followers Count": {
    "label": "Followers",
    "format": "integer"
  },
  "Following Count": {
    "label": "Following",
    "format": "integer"
  },
  "Biography": {
    "label": "Bio text",
    "format": "string"
  },
  "Email": {
    "label": "Email (from bio / contact button)",
    "format": "string"
  },
  "Email Source": {
    "label": "Email source",
    "format": "string"
  },
  "Phone": {
    "label": "Phone (from bio / contact button)",
    "format": "string"
  },
  "External URL": {
    "label": "Website (bio link)",
    "format": "string"
  },
  "Address": {
    "label": "Physical address (business)",
    "format": "string"
  },
  "Category": {
    "label": "Business category",
    "format": "string"
  },
  "Profile Picture": {
    "label": "Avatar URL",
    "format": "string"
  },
  "Reels Count": {
    "label": "Reels posted",
    "format": "integer"
  },
  "Last Reel (Days Ago)": {
    "label": "Days since last Reel",
    "format": "integer"
  },
  "Median Views": {
    "label": "Median Reel views",
    "format": "integer"
  },
  "Avg Likes": {
    "label": "Average likes per post",
    "format": "integer"
  },
  "Avg Comments": {
    "label": "Average comments per post",
    "format": "integer"
  },
  "Views/Followers Ratio": {
    "label": "Views per follower (%)",
    "format": "string"
  },
  "Posts per Month": {
    "label": "Posting frequency (per month)",
    "format": "number"
  },
  "Total Posts": {
    "label": "Total posts on profile",
    "format": "integer"
  },
  "Detected Language": {
    "label": "Detected language",
    "format": "string"
  },
  "Last Post Within (Days)": {
    "label": "Days since last post",
    "format": "integer"
  },
  "Median ER": {
    "label": "Engagement rate (%)",
    "format": "string"
  },
  "Quality": {
    "label": "Account quality",
    "format": "string"
  },
  "Post 1": {
    "label": "Post caption #1",
    "format": "string"
  },
  "Post 2": {
    "label": "Post caption #2",
    "format": "string"
  },
  "Post 3": {
    "label": "Post caption #3",
    "format": "string"
  },
  "Post 4": {
    "label": "Post caption #4",
    "format": "string"
  },
  "Post 5": {
    "label": "Post caption #5",
    "format": "string"
  },
  "Post 6": {
    "label": "Post caption #6",
    "format": "string"
  },
  "Post 7": {
    "label": "Post caption #7",
    "format": "string"
  },
  "Post 8": {
    "label": "Post caption #8",
    "format": "string"
  },
  "Email from Posts": {
    "label": "Email parsed from post captions",
    "format": "string"
  },
  "Phone from Posts": {
    "label": "Phone parsed from post captions",
    "format": "string"
  },
  "Analysis Status": {
    "label": "Analysis status",
    "format": "string"
  },
  "Why Not Analyzed": {
    "label": "Why not analyzed",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Influencer Search — Hashtag Search, Emails](https://apify.com/afanasenko/instagram-influencer-search) with a specific input configuration. Visit the [Actor detail page](https://apify.com/afanasenko/instagram-influencer-search) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/afanasenko/instagram-influencer-search.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
