Instagram Hashtag Scraper avatar

Instagram Hashtag Scraper

Pricing

from $1.50 / 1,000 results

Go to Apify Store
Instagram Hashtag Scraper

Instagram Hashtag Scraper

Instagram Hashtag Scraper returns normalized, review-ready API data with robust inputs, consistent outputs, and pay-per-result pricing.

Pricing

from $1.50 / 1,000 results

Rating

0.0

(0)

Developer

Virtual Footprint LLC

Virtual Footprint LLC

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

4 days ago

Last modified

Categories

Share

Instagram Hashtag Scraper returns normalized, review-ready API data with robust inputs, consistent outputs, and pay-per-result pricing.


🚀 Quick Start

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
# Prepare the actor input
run_input = {
"maxResults": 25,
}
# Run the actor and wait for results
run = client.actor("AyeEyee~instagram-hashtag-scraper").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({
token: 'YOUR_API_TOKEN',
});
const input = {
maxResults: 25,
};
const run = await client
.actor('AyeEyee~instagram-hashtag-scraper')
.call(input);
const { items } = await client
.dataset(run.defaultDatasetId)
.listItems();
items.forEach((item) => console.log(item));

cURL

curl -X POST "https://api.apify.com/v2/acts/AyeEyee~instagram-hashtag-scraper/runs?token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"maxResults": 25}'

✨ Features

  • Extract structured records at scale
  • Support both single and batch input workflows
  • Return normalized fields for downstream automation
  • Export-ready dataset output for analytics pipelines
  • Works with scheduled and API-triggered runs
  • Supports direct URL-based extraction workflows
  • Supports keyword and query-based discovery inputs

🎯 Common Use Cases

  • Market research
  • Lead generation
  • Competitive analysis
  • Internal reporting
  • Data enrichment
  • Automation workflows

📥 Example Input

{
"query": "example query",
"queries": [
"example query"
],
"urls": [
"https://www.example.org"
],
"maxResults": 25,
"includeRaw": false,
"maxCostPerRun": 5
}

📤 Example Output

{
"query": "example query",
"url": "https://www.example.org",
"actorSlug": "record value",
"source": "record value",
"title": "record value",
"description": "record value",
"scrapedAt": "record value"
}

📋 Input Parameters

FieldTypeRequiredDescription
querystringNoPrimary keyword, URL, profile, company, product, or identifier to collect
queriesarrayNoOptional batch list of query strings
urlsarrayNoDirect URLs to process (take priority over discovery)
maxResultsintegerNoMaximum number of dataset items to emit (default: 25)
includeRawbooleanNoInclude collection diagnostics and raw source metadata
maxCostPerRunnumberNoCost guardrail in USD (actor caps output before exceeding)
proxyConfigurationobjectNoApify proxy settings for production runs

📊 Output Fields

FieldTypeDescription
querystringNormalized query value
urlstringNormalized url value
actorSlugstringNormalized actorSlug value
sourcestringNormalized source value
titlestringNormalized title value
descriptionstringNormalized description value
scrapedAtstringNormalized scrapedAt value
runIdstringNormalized runId value
rankstringNormalized rank value

📦 Export Formats

  • JSON
  • CSV
  • Excel
  • XML
  • RSS

💰 Pricing

Model: PAY_PER_EVENT

$1.50 per 1,000 results ($0.05 per actor start)

❓ FAQ

Does this actor support batch processing?

Yes. Use the queries input field to provide multiple queries.

Can I export results to CSV?

Yes. Results are available in JSON, CSV, Excel, XML, and RSS formats via the Apify dataset.

Can I schedule runs?

Yes, through Apify schedules. Configure in the Apify Console.

Can I run this actor via API?

Yes. See the Quick Start section above for Python, JavaScript, and cURL examples.

Does it support direct URLs?

Yes. Provide URLs in the urls input field.

Can I integrate this actor with n8n or Make?

Yes. This actor is compatible with n8n, Make (Integromat), Zapier, and other automation platforms via the Apify API.

How is pricing calculated?

You are charged $0.05 per actor start plus $1.50 per 1,000 results. Apify adds a 20% platform margin on top.