Instagram Hashtag Scraper
Pricing
from $1.50 / 1,000 results
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
Maintained by CommunityActor 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 ApifyClientclient = ApifyClient("YOUR_API_TOKEN")# Prepare the actor inputrun_input = {"maxResults": 25,}# Run the actor and wait for resultsrun = 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
| Field | Type | Required | Description |
|---|---|---|---|
| query | string | No | Primary keyword, URL, profile, company, product, or identifier to collect |
| queries | array | No | Optional batch list of query strings |
| urls | array | No | Direct URLs to process (take priority over discovery) |
| maxResults | integer | No | Maximum number of dataset items to emit (default: 25) |
| includeRaw | boolean | No | Include collection diagnostics and raw source metadata |
| maxCostPerRun | number | No | Cost guardrail in USD (actor caps output before exceeding) |
| proxyConfiguration | object | No | Apify proxy settings for production runs |
📊 Output Fields
| Field | Type | Description |
|---|---|---|
| query | string | Normalized query value |
| url | string | Normalized url value |
| actorSlug | string | Normalized actorSlug value |
| source | string | Normalized source value |
| title | string | Normalized title value |
| description | string | Normalized description value |
| scrapedAt | string | Normalized scrapedAt value |
| runId | string | Normalized runId value |
| rank | string | Normalized 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.