Instagram Hashtag Scraper avatar
Instagram Hashtag Scraper

Pricing

$0.70 / 1,000 results

Go to Store
Instagram Hashtag Scraper

Instagram Hashtag Scraper

Developed by

CoderX

Maintained by Community

This scraper extracts users from Instagram based on a hashtag. Just enter a hashtag and set the number of usernames you need. It collects user details like usernames, IDs, and captions, making it perfect for social media analysis and research. 🚀

0.0 (0)

Pricing

$0.70 / 1,000 results

0

Total users

27

Monthly users

27

Runs succeeded

86%

Last modified

19 days ago

You can access the Instagram Hashtag Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6    token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11    "keyword": "nature",
12    "Max_items": 1000,
13    "cookies": [
14        {
15            "name": "datr",
16            "value": "sL_rZ1VMWqwRVcCuWXiAQmZX",
17            "domain": ".instagram.com",
18            "path": "/",
19            "expires": 1778063286.150982,
20            "httpOnly": true,
21            "secure": true
22        },
23        {
24            "name": "ig_did",
25            "value": "1C8AA31D-EA64-4F7A-BFB7-A5E4CFB044A2",
26            "domain": ".instagram.com",
27            "path": "/",
28            "expires": 1775039289.586829,
29            "httpOnly": true,
30            "secure": true
31        },
32        {
33            "name": "mid",
34            "value": "Z-u_sAALAAFLVNABqbKzftY5QmVX",
35            "domain": ".instagram.com",
36            "path": "/",
37            "expires": 1778063286.151132,
38            "httpOnly": true,
39            "secure": true
40        },
41        {
42            "name": "csrftoken",
43            "value": "K2icskn2peDTQSn8Fpc4d0UeXI5gvHUA",
44            "domain": ".instagram.com",
45            "path": "/",
46            "expires": 1774971325.552493,
47            "httpOnly": false,
48            "secure": true
49        },
50        {
51            "name": "ds_user_id",
52            "value": "73139193689",
53            "domain": ".instagram.com",
54            "path": "/",
55            "expires": 1751297725.552724,
56            "httpOnly": false,
57            "secure": true
58        },
59        {
60            "name": "sessionid",
61            "value": "73539491489%3A377qgGLgpVU9QO%3A18%3AAYdYA1n9adejJUjkr8k17j3-LCTLoeEC2wsBnd-_oA",
62            "domain": ".instagram.com",
63            "path": "/",
64            "expires": 1775039435.486017,
65            "httpOnly": true,
66            "secure": true
67        },
68        {
69            "name": "wd",
70            "value": "1358x642",
71            "domain": ".instagram.com",
72            "path": "/",
73            "expires": 1744126523,
74            "httpOnly": false,
75            "secure": true,
76            "sameSite": "Lax"
77        },
78        {
79            "name": "rur",
80            "value": "\"RVA\\05473539498689\\0541775057726:01f7831497b9bd63ed547dedca6805d32284ae9700d432ff00bfdd136ae1c88416ec2841\"",
81            "domain": ".instagram.com",
82            "path": "/",
83            "expires": -1,
84            "httpOnly": true,
85            "secure": true,
86            "sameSite": "Lax"
87        }
88    ]
89};
90
91// Run the Actor and wait for it to finish
92const run = await client.actor("coderx/instagram-hashtag-scraper").call(input);
93
94// Fetch and print Actor results from the run's dataset (if any)
95console.log('Results from dataset');
96console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
97const { items } = await client.dataset(run.defaultDatasetId).listItems();
98items.forEach((item) => {
99    console.dir(item);
100});
101
102// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

Instagram Hashtag Scraper API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use Instagram Hashtag Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

npm install apify-client

Other API clients include: