Instagram Creator Scraper
Pricing
from $8.00 / 1,000 results
Instagram Creator Scraper
Extract structured Instagram profile data with 34 fields per account including bio, followers, business contact details, verification status, and related profiles.
Pricing
from $8.00 / 1,000 results
Rating
0.0
(0)
Developer
AgentX
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
5 hours ago
Last modified
Categories
Share
Instagram Creator Scraper - Instagram Profile Data Extraction API
Extract structured Instagram profile data with 34 fields per account including bio, followers, business contact details, verification status, and related profiles. This Instagram profile scraper API delivers schema-ready JSON output for influencer analytics, lead-generation pipelines, brand monitoring, and audience intelligence workflows targeting any public Instagram creator or business account.
Why Choose This Instagram Profile Scraper API
Structured Instagram Profile Intelligence for Data Pipelines
🎯 34 Fields Per Profile in One API Call Extract full Instagram creator profiles including bio text, pronouns, display name, external links, and bio-link arrays in a single structured JSON payload. Eliminate the need for browser automation or manual data collection.
👥 Complete Follower & Engagement Signals Access follower count, following count, total posts, total reels, total highlights, and pinned channel count per profile. Essential for influencer qualification scoring, audience sizing, and engagement benchmarking pipelines.
📧 Business Contact Extraction Retrieve publicly listed business email addresses, phone numbers, and structured address objects from Instagram business profiles. Directly enriches lead-generation datasets and CRM pipelines with verified contact signals.
✅ Verification & Professional Status Flags
Extract is_verified, is_professional, and is_business boolean flags plus Instagram's native category label and business category name. Power creator-tier segmentation and brand classification workflows.
🔗 Related Profile Graph Each result includes Instagram's recommended related public profiles — enabling graph-based audience expansion, niche mapping, and competitor creator discovery at scale.
📊 AI-Ready JSON Output Structured output optimized for LangChain, CrewAI, AutoGPT, and custom intelligence pipelines. Compatible with any ETL tool, data warehouse, or downstream ML workflow.
Quick Start Guide
How to Extract Instagram Profile Data in 3 Steps
Step 1: Configure Your Target
Step 2: Run the Actor
Click "Start" and the scraper will extract the full structured profile from the specified Instagram account.
Step 3: Download Your Data
Export results in JSON format or access via API. Each result delivers all 34 profile fields per account.
Input Parameters
Required Configuration Fields
| Parameter | Type | Description | Example Values |
|---|---|---|---|
instagram_url | string | Target Instagram username or full profile URL to extract | "natgeo", "https://www.instagram.com/natgeo/" |
Input Format Options
Username Only (Recommended):
"natgeo"— Instagram handle without the@symbol"nike"— Brand account username"9gag"— Publisher or community account
Full Profile URL:
"https://www.instagram.com/natgeo/"— Full canonical profile URL
Pro Tip: Using just the username is the most reliable input format. Full URLs are also accepted and resolved automatically.
Example Input JSON
{"instagram_url": "natgeo"}
Output Data Schema
34 Structured Fields Per Profile
| Field | Type | Description |
|---|---|---|
status | string | Processing status of the extraction |
processor | string | URL of the Actor that processed this record |
processed_at | string | ISO 8601 timestamp of when the data was extracted |
requested_input | string | Username or URL submitted as input |
user_id | string | Unique Instagram account identifier |
username | string | Public Instagram username |
full_name | string | Display name shown on the profile |
bio | string | Full biography text from the profile |
pronouns | array | Pronouns listed on the profile |
website | string | External website URL shown on the profile |
bio_links | array | All links present in the bio section |
contact_method | string | Business contact method value |
email | string | Publicly listed business email address when available |
phone | string | Publicly listed business phone number when available |
address | object | Structured business address data when available |
category | string | Public category label displayed on the profile |
business_category | string | Instagram business category name for the account |
is_private | boolean | Whether the account is set to private |
is_verified | boolean | Whether the account holds verified status |
is_professional | boolean | Whether the account is marked as professional |
is_business | boolean | Whether the account is marked as a business |
has_channel | boolean | Whether the profile has a channel enabled |
has_clips | boolean | Whether the profile has public clips or reels |
has_guides | boolean | Whether the profile has public guides |
followers | integer | Total follower count |
following | integer | Total accounts followed |
posts | integer | Total timeline posts published |
reels | integer | Total reels or clips published |
highlights | integer | Total highlights published |
pinned_channels | integer | Number of pinned channels on the profile |
highlights_type | string | Highlights tray type value |
related_profiles | array | Usernames of related public profiles suggested by Instagram |
avatar_url | string | Direct URL to the highest-resolution profile picture |
profile_url | string | Canonical Instagram profile URL |
Example JSON Output
{"status": "success","processor": "https://apify.com/agentx/instagram-creator-scraper","processed_at": "2026-07-02T10:30:00Z","requested_input": "instagram","user_id": "25025320","username": "instagram","full_name": "Instagram","bio": "Discover what's new on Instagram","pronouns": [],"website": "https://help.instagram.com/","bio_links": ["https://help.instagram.com/"],"contact_method": "UNKNOWN","email": null,"phone": null,"address": null,"category": "Personal blog","business_category": null,"is_private": false,"is_verified": true,"is_professional": true,"is_business": false,"has_channel": false,"has_clips": true,"has_guides": false,"followers": 700857201,"following": 242,"posts": 8407,"reels": 273,"highlights": 15,"pinned_channels": 0,"highlights_type": "DEFAULT","related_profiles": ["threads", "creators"],"avatar_url": "https://example.com/profile-hd.jpg","profile_url": "https://www.instagram.com/instagram/"}
Export Formats
- JSON - Complete structured data with all 34 fields
- CSV - Spreadsheet-compatible flat format
- API Access - Programmatic access via Apify Client SDK
- Cloud Storage - Automatic upload to Apify Dataset
Integration Examples
Actor ID for Platform Integration
agentx/instagram-creator-scraper
Make.com Integration (No-Code Automation)
- Login to Make.com (Get 1000 Free Credits)
- Add Module: "Run an Actor"
- Enable Map: Turn on 'Map' (right side of 'Actor*')
- Paste Actor ID:
agentx/instagram-creator-scraper - Refresh: Click '⟳ Refresh' (left side of Map)
- Configure Input: Set your target Instagram username
- Set Synchronous: "Run synchronously" = YES
- Add Output Module: "Get Dataset Items"
- Select Dataset: Choose
defaultDatasetId
n8n.io Integration (Workflow Automation)
- Add Node: 'Run an Actor and get dataset' from Apify node
- Select By ID: Actor → By ID
- Paste Actor ID:
agentx/instagram-creator-scraper - Configure Input: Modify parameters as needed
Python Integration Example
from apify_client import ApifyClientclient = ApifyClient('YOUR_API_TOKEN')run_input = {"instagram_url": "natgeo"}run = client.actor("agentx/instagram-creator-scraper").call(run_input=run_input)for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item)
JavaScript/Node.js Integration
import { ApifyClient } from "apify-client";const client = new ApifyClient({token: "YOUR_API_TOKEN",});const input = {instagram_url: "natgeo",};const run = await client.actor("agentx/instagram-creator-scraper").call(input);const { items } = await client.dataset(run.defaultDatasetId).listItems();items.forEach((item) => {console.log(item);});
JSON-LD Metadata
{"@context": "https://schema.org","@type": "SoftwareApplication","name": "Instagram Creator Scraper","description": "Instagram profile data extraction API delivering 34 structured fields per account for influencer analytics and lead-generation pipelines","applicationCategory": "Developer Tools","operatingSystem": "Cloud","url": "https://apify.com/agentx/instagram-creator-scraper?fpr=aiagentapi","dateModified": "2026-07-02","offers": {"@type": "Offer","price": "0.005","priceCurrency": "USD"}}
Pricing & Cost Calculator
Transparent Pay-Per-Use Model
| Event Type | Price | Description |
|---|---|---|
| Actor Start | $0.01 | One-time charge per Actor run (charged per GB of memory, minimum one event) |
| Profile Result | $0.005 | Charged for each Instagram profile returned. Includes all 34 fields: bio, followers, contact info, verification, and related profiles. |
Cost Examples
Small Scale (100 profiles):
- Profile Data: 100 × $0.005 = $0.50
- Actor Start: $0.01
- Total: ~$0.51
Medium Scale (1,000 profiles):
- Profile Data: 1,000 × $0.005 = $5.00
- Actor Start: $0.01
- Total: ~$5.01
Large Scale (10,000 profiles):
- Profile Data: 10,000 × $0.005 = $50.00
- Actor Start: $0.01
- Total: ~$50.01
Competitive Pricing Comparison
| Feature | Instagram Creator Scraper | Bright Data | Octoparse | ScrapingBee |
|---|---|---|---|---|
| Cost per 1K Profiles | $5.00 ⭐ | $9.50 | $11.00 | $8.00 |
| Data Fields | 34+ ⭐ | 15 | 10 | 8 |
| Business Contact | Email/Phone/Addr ⭐ | Partial | No | No |
| Related Profiles | Included ⭐ | No | No | No |
| API Quality | Enterprise ⭐ | Complex | No API | Basic |
Use Cases & Applications
Influencer Analytics & Brand Intelligence
Creator Qualification Pipeline Extract follower counts, verification status, engagement signals, and business category labels to build automated creator scoring systems. Feed structured profile data into ranking models for influencer marketing platforms and talent discovery tools.
Brand Monitoring Track competitor brands' Instagram profiles systematically. Monitor bio changes, follower growth trajectories, and category updates as structured time-series data without manual browsing.
Niche Audience Mapping
Use the related_profiles field to map Instagram's internal recommendation graph. Discover adjacent creators and brand accounts within a niche for competitive intelligence and partnership identification.
Lead Generation & Outreach
Business Contact Extraction Target Instagram business accounts and extract publicly listed email addresses, phone numbers, and addresses at scale. Enrich CRM records with verified social signals for direct outreach campaigns.
Creator Outreach Automation Build automated pipeline stages that extract contact details, verify account size, and classify business categories before passing profiles to outreach sequences — eliminating manual research.
Market Segmentation Segment public Instagram accounts by category labels, verification tier, follower range, and business type. Build targeted prospect lists for agencies, SaaS platforms, and media buyers.
AI & Machine Learning Applications
Training Data for Creator Classification Models Use structured profile metadata — category, verification status, follower count, bio text — to train creator-tier classification, brand safety scoring, or audience quality models.
Graph Neural Network Inputs
Feed related_profiles arrays into graph-based recommendation models to map creator networks, brand clusters, and audience overlaps on Instagram.
NLP & Bio Analysis Extract and process bio text and bio link arrays for natural language analysis of creator positioning, brand messaging patterns, and topic clustering across creator verticals.
Research & Analytics Platforms
Academic Research Study Instagram creator economy trends, business adoption patterns, and verification distribution across categories using structured API data at scale.
Social Media Analytics Products Build analytics dashboards and benchmarking tools on top of this API, delivering profile metrics, engagement sizing, and contact enrichment to marketing teams.
FAQ - Frequently Asked Questions
General Questions
What data does the Instagram Creator Scraper extract per profile?
Each run returns 34 structured fields including bio text, follower and following counts, post and reel totals, business email, phone, address, category labels, verification flags, related profile lists, and the highest-resolution avatar URL available.
Can I extract data from private Instagram accounts?
No. This API only extracts data from public Instagram accounts. Private accounts (is_private: true) are not accessible without authentication. The is_private field in the output indicates account visibility status.
How many profiles can I extract per run?
The actor is designed for single-profile extraction per run targeting a specified username or profile URL. For bulk profile extraction pipelines, trigger multiple runs programmatically via the Apify API or client SDK.
Technical Questions
What input formats are accepted?
The actor accepts both plain usernames (e.g., "natgeo") and full profile URLs (e.g., "https://www.instagram.com/natgeo/"). Username format is recommended for most pipelines.
What format does the output use?
Output is structured JSON with 34 fields per profile. Data is also available in CSV format and via REST API using the Apify dataset endpoint.
Can I integrate this with Make.com or n8n?
Yes. Use the "Run an Actor" module in Make.com or the Apify node in n8n. Configure the Actor ID and input JSON, run synchronously, and retrieve results from the defaultDatasetId output.
Is the scraper compatible with AI frameworks?
Yes. The JSON output is optimized for LangChain, CrewAI, AutoGPT, and other AI frameworks. The structured schema makes it suitable for creator ranking agents, contact enrichment tools, and audience intelligence workflows.
Data Quality Questions
Why might business contact fields be empty?
Instagram only exposes email, phone, and address fields for accounts that have explicitly set up a business profile and made contact details public. Personal and professional accounts without business settings will return null for these fields.
How fresh is the extracted data?
Each run fetches live data from Instagram's public profile pages at the time of execution. Schedule runs on a recurring basis to maintain time-series snapshots of profile metrics.
What if a username returns no results?
Common causes: the username does not exist, the account has been deactivated, or the account is private. Verify the username on Instagram before running. The status field in output indicates extraction success or failure.
SEO Keywords & Search Terms
Primary Keywords
instagram profile scraper, instagram creator API, instagram data extraction, instagram profile data API, instagram business intelligence, instagram contact extraction, influencer data API, instagram profile scraper API, creator analytics API, instagram structured data
Long-Tail Keywords
how to extract instagram profile data programmatically, instagram profile data extraction API structured JSON, bulk instagram profile scraper for pipelines, instagram business email extraction API, instagram follower count API structured output, creator qualification data pipeline instagram, instagram verification status extraction API, instagram profile fields JSON schema, instagram related profiles graph extraction, instagram creator data enrichment pipeline
Industry Terms
influencer analytics platform, creator economy intelligence, social media data API, instagram audience analysis, creator qualification scoring, brand monitoring instagram, contact enrichment pipeline, social graph extraction, instagram profile metadata, creator data feed
Use Case Keywords
AI training data instagram creators, instagram lead generation API, instagram CRM enrichment, creator outreach automation, instagram brand monitoring pipeline, instagram niche audience mapping, social media market research API, instagram profile benchmarking, creator verification extraction, instagram business category API
Trust & Certifications
- ✅ Enterprise Ready - Used by agencies, analytics platforms, and recruitment tools
- ✅ GDPR Compliant - EU data protection standards and privacy regulations
- ✅ 99.9% Uptime - Reliable cloud infrastructure with automatic failover
- ✅ Regular Updates - Continuous maintenance for Instagram platform changes
Legal & Compliance
Data Rights & Usage
All data extracted by this actor originates from publicly available Instagram profile pages. Users are responsible for ensuring their use of extracted data complies with applicable laws and regulations in their jurisdiction.
Privacy Compliance
- GDPR: Compliant with EU General Data Protection Regulation. No personal data is stored beyond the extraction session.
- CCPA: Compliant with California Consumer Privacy Act requirements. Data processing follows privacy-by-design principles.
Platform Terms of Service
Users must review and comply with Instagram's terms of service when using extracted data. This tool accesses only publicly available information visible without authentication.
Enterprise Support
For enterprise licensing, custom integrations, or compliance inquiries, contact our team:
- Telegram: @AiAgentApi
Related Tools
- Instagram Creator Scraper - Instagram Profile Data Extraction & Creator Intelligence (This Tool)
- Instagram Post Reel Scraper - Instagram Feed Post & Reel Extraction API
- Instagram Trending Scraper - Instagram Explore Trending Content Extraction API
Jobs & Hiring
- All Job Scraper - Multi-Platform Job Data Extraction API for Indeed, LinkedIn & Glassdoor
- Indeed Hiring Scraper - Indeed Job Extraction & Market Intelligence
- LinkedIn Hiring Scraper - LinkedIn Job Data Extraction & Talent Intelligence
- Glassdoor Hiring Scraper - Glassdoor Salary Intelligence & Company Reviews
- LinkedIn Company Scraper - LinkedIn Company Data Extraction & Firmographic Intelligence
- LinkedIn Profile Scraper - LinkedIn Profile Data Extraction & Professional Intelligence
- Reddit Author Scraper - Reddit Author Profile Extraction & Activity Analysis
- Reddit Viral Scraper - Reddit Viral Content Extraction & Trend Intelligence
- SubReddit Info Scraper - Subreddit Metadata Extraction & Community Intelligence
- SubReddit Post Scraper - Subreddit Post Extraction & Content Analysis
- Subreddit Member Scraper - Subreddit Member Extraction & Audience Analysis
Telegram
- Telegram Chat Scraper - Telegram Chat Message Extraction & Content Analysis
- Telegram Group Inviter - Telegram Group Member Invitation & Management
- Telegram Info Scraper - Telegram Entity Metadata Extraction & Intelligence
- Telegram Member Scraper - Telegram Group Member Extraction & Audience Data
- Telegram Private Group Scraper - Telegram Private Group Data Extraction & Analysis
X / Twitter
- Twitter Community Scraper - Twitter Community Extraction & Member Analysis
- Twitter Info Scraper - X/Twitter Profile Extraction & User Intelligence
TikTok
- TikTok Creator Scraper - TikTok Creator Profile Extraction & Analytics
- TikTok Live Downloader - TikTok Live Stream Recording & Download
- TikTok Transcript - TikTok Video Transcription & Content Extraction
Video & Content
- All Video Scraper - Multi-Platform Video Download & Extraction (1000+ Sites)
- Video Caption Scraper - Video Caption Extraction & Subtitle Data
- Video Transcript - Universal Video Transcription & AI Training Data
- Video to Social Post - Video Content Conversion & Social Media Repurposing
- Live Stream Transcript - Live Stream Transcription & Real-Time Content Extraction
YouTube
- YouTube Transcript - YouTube Video Transcription & Speech Extraction
- YouTube Market Intelligence - YouTube Channel & Video Metadata Extraction
Real Estate
- Realtor Property Scraper - Realtor.com Property Data Extraction & Market Intelligence
- Zillow For Sale Scraper - Zillow Property Listing Extraction & Real Estate Data
Maps & Local
- Google Maps Store Scraper - Google Maps Business Data Extraction & Local Intelligence
Support & Community
- 👥 Community: @Apify_Actor
- 👤 Contact Team: @AiAgentApi
Last Updated: July 02, 2026
