# Instagram Hashtag Research Scraper (`seemuapps/instagram-hashtag-research-scraper`) Actor

Find related Instagram hashtags for any keyword with post counts and popularity ranks — perfect for hashtag research and content planning.

- **URL**: https://apify.com/seemuapps/instagram-hashtag-research-scraper.md
- **Developed by:** [Andrew](https://apify.com/seemuapps) (community)
- **Categories:** Social media, AI, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 hashtag results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **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 usage examples, see the [API](#api) section below.

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).

# README

## Instagram Hashtag Research Scraper

Turn any keyword into a ranked list of related Instagram hashtags with real post counts - no login required. Find the hashtags your audience actually uses before you hit publish.

### What you get

For every keyword you enter, the scraper returns the matching Instagram hashtags with:

- **Hashtag name** and a direct link to its Instagram explore page
- **Post count** (`mediaCount`) - the total number of posts using the hashtag
- **Formatted post count** (e.g. `174M`, `1.9M`, `921K`) for quick scanning
- **Rank** - the hashtag's position in Instagram's own search results for your keyword
- **Hashtag ID** for joining with other datasets
- Export to JSON, CSV, Excel, or Google Sheets directly from the Apify console

### Use cases

- **Hashtag research** - build hashtag sets for upcoming posts with a mix of high-volume and niche tags
- **Content planning** - discover what topics and tag variations exist around your niche before creating content
- **Reach optimization** - balance mega-hashtags (millions of posts) against low-competition long-tail tags to maximize discoverability
- **Competitor hashtag analysis** - research the keyword spaces your competitors post into and find gaps they've missed
- **Campaign tracking setup** - identify every variant of a branded hashtag before launching a campaign

### How to use

1. Enter one or more **Keywords** (one per line), e.g. `fitness`, `vegan recipes`
2. Optionally set **Max Items** to cap the total number of hashtags returned (0 = unlimited)
3. Run the actor - results appear in the **Dataset** tab, one hashtag per row
4. Export the dataset as CSV or Google Sheets for your content calendar

### Output format

Each dataset record:

```json
{
  "keyword": "fitness",
  "hashtagId": "17843691415043401",
  "name": "fitnessmotivation",
  "url": "https://www.instagram.com/explore/tags/fitnessmotivation/",
  "mediaCount": 174098560,
  "formattedMediaCount": "174M",
  "rank": 1
}
```

# Actor input Schema

## `keywords` (type: `array`):

Search keywords to find related Instagram hashtags for - one keyword per line. Each keyword returns its own set of matching hashtags with post counts.

## `maxItems` (type: `integer`):

Maximum total number of hashtag records to return across all keywords. Set 0 for unlimited.

## Actor input object example

```json
{
  "keywords": [
    "fitness"
  ],
  "maxItems": 0
}
```

# Actor output Schema

## `results` (type: `string`):

One record per hashtag: keyword, hashtagId, name, url, mediaCount (total posts), formattedMediaCount (e.g. 174M), and rank (position in that keyword's results).

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keywords": [
        "fitness"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("seemuapps/instagram-hashtag-research-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "keywords": ["fitness"] }

# Run the Actor and wait for it to finish
run = client.actor("seemuapps/instagram-hashtag-research-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keywords": [
    "fitness"
  ]
}' |
apify call seemuapps/instagram-hashtag-research-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=seemuapps/instagram-hashtag-research-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/SqfN2Tj4J7uPrZHLN/builds/bEsZW0jesWEHYejFM/openapi.json
