Instagram Business Intelligence Pro avatar

Instagram Business Intelligence Pro

Pricing

$19.00/month + usage

Go to Apify Store
Instagram Business Intelligence Pro

Instagram Business Intelligence Pro

Assess influencer credibility, track brand mentions, and extract competitor intelligence from Instagram. Engagement rate analysis, follower authenticity scoring, and business contact discovery. No API keys required.

Pricing

$19.00/month + usage

Rating

1.0

(1)

Developer

AutomateLab

AutomateLab

Maintained by Community

Actor stats

2

Bookmarked

19

Total users

1

Monthly active users

14 days ago

Last modified

Share

Instagram Business Intelligence Pro — Influencer Credibility & Brand Monitoring

Assess influencer authenticity, track brand mentions, and extract competitor intelligence from Instagram. No API key required. Built for AI agents, PR agencies, and brand managers who need to verify audience authenticity before committing budget.

Apify Store: https://apify.com/red.cars/instagram-business-intelligence-pro Pricing: $0.045/profile report, $0.01/post (Pay-per-event, PPE) MCP Available: Yes — 6 tools exposed for AI agent integration


What This Actor Does

Instagram Business Intelligence Pro extracts influencer credibility metrics, engagement authenticity signals, and brand monitoring data from Instagram. It analyzes follower quality, engagement rate patterns, and audience authenticity to help you separate real influencers from those with inflated metrics.

Search intent keywords: "instagram influencer checker", "influencer credibility assessment", "instagram engagement audit", "fake follower detection tool", "brand monitoring instagram"


Who It's For

  • PR agencies assessing influencer credibility before campaign spend
  • Brand managers monitoring brand mentions and competitor activity
  • Marketing teams validating influencer partnerships and ROI
  • AI agents building automated influencer vetting pipelines
  • Researchers studying social media authenticity and audience quality

Quick Start

# Option 1: Apify Console (no code)
# Open https://apify.com/red.cars/instagram-business-intelligence-pro
# Click "Run" and configure input
# Option 2: API (cURL)
curl -X POST https://api.apify.com/v2/acts/red.cars~instagram-business-intelligence-pro/runs?token=*** \
-H "Content-Type: application/json" \
-d '{"input": {"target": "tech_influencer", "analysisType": "profile", "maxResults": 50}}'
# Option 3: Node.js
const Apify = require('apify');
const actor = new Apify.Actor('red.cars/instagram-business-intelligence-pro');
await actor.call({ target: 'tech_influencer', analysisType: 'profile', maxResults: 50 });
# Option 4: MCP (AI agents) — RECOMMENDED
# Configure @apify/mcp-server in your AI client
# Then ask: "Is @tech_influencer legitimate? Check their engagement rate and follower quality"

Smoke Test (Free, <5 seconds)

# Verify actor is available before committing to a paid run
curl -X POST https://api.apify.com/v2/acts/red.cars~instagram-business-intelligence-pro/runs?token=*** \
-d '{"input": {"target": "instagram", "checkOnly": true}}'

Features

  • Influencer credibility assessment — Engagement rate analysis, follower growth patterns, authenticity signals
  • Fake follower detection — Identify inflated follower counts and bot-like engagement patterns
  • Brand monitoring — Track mentions, hashtags, and competitor product launches
  • Audience quality analysis — Analyze follower demographics and engagement authenticity
  • Competitor intelligence — Compare metrics across multiple profiles
  • Sentiment analysis — Comment-level sentiment for brand reputation monitoring
  • Business contact discovery — Extract verified emails, phones, and categories for lead gen
  • RAG pipeline ready — Native Markdown output for AI/LLM integration
  • Residential proxy support — 70M+ IP pool for reliable extraction
  • Zero-result guard — No charge for empty results under PPE billing
  • Multi-format export — JSON, CSV, Excel, Markdown (LLM-optimized)

MCP Tools

CRITICAL SECTION — AI agents discover and call this actor via Model Context Protocol.

Install the Apify MCP server:

$npm install -g @apify/mcp-server

Add to your MCP configuration:

{
"mcpServers": {
"apify": {
"command": "npx",
"args": ["@apify/mcp-server"]
}
}
}

Connect to Apify MCP: https://apify.actor/mcp


Tool: instagram-credibility-check

What it does: Assess influencer authenticity by analyzing engagement rate, follower growth patterns, and audience quality signals. Returns credibility score with detailed metrics.

Input parameters:

ParameterTypeRequiredDescription
targetstringYesInstagram username or profile URL
includeAudienceAuthenticitybooleanNoAnalyze audience quality signals (default: true)
resultsLimitintegerNoMaximum posts to analyze (default: 50)

Example MCP call:

{
"name": "instagram-credibility-check",
"description": "Assess Instagram influencer authenticity. Analyzes engagement rate, follower growth patterns, and audience quality to detect fake followers and inflated metrics.",
"inputSchema": {
"type": "object",
"properties": {
"target": {
"type": "string",
"description": "Instagram username or profile URL"
},
"includeAudienceAuthenticity": {
"type": "boolean",
"description": "Analyze audience quality and detect bot signals"
},
"resultsLimit": {
"type": "integer",
"description": "Maximum posts to analyze (1-100, default: 50)"
}
},
"required": ["target"]
}
}

Cost: $0.045/credibility check event (included in Apify PPE pricing)


Tool: instagram-brand-monitor

What it does: Track brand mentions, hashtags, and competitor activity on Instagram. Returns sentiment analysis and engagement metrics for monitoring campaigns.

Input parameters:

ParameterTypeRequiredDescription
brandNamestringYesBrand name or @handle to monitor
includeSentimentbooleanNoAnalyze comment sentiment (default: true)
timeRangestringNoMonitoring period: 24h, 7d, 30d (default: 7d)

Example MCP call:

{
"name": "instagram-brand-monitor",
"description": "Monitor Instagram brand mentions, hashtags, and competitor activity. Returns engagement metrics, sentiment analysis, and trend data.",
"inputSchema": {
"type": "object",
"properties": {
"brandName": {
"type": "string",
"description": "Brand name or @handle to monitor"
},
"includeSentiment": {
"type": "boolean",
"description": "Analyze comment and mention sentiment"
},
"timeRange": {
"type": "string",
"enum": ["24h", "7d", "30d"],
"description": "Monitoring period (default: 7d)"
}
},
"required": ["brandName"]
}
}

Cost: $0.08/brand monitoring event


Tool: instagram-audience-analysis

What it does: Analyze Instagram audience quality, demographics signals, and engagement authenticity patterns. Detect bot-like followers and inflated metrics.

Input parameters:

ParameterTypeRequiredDescription
targetstringYesInstagram username
depthstringNobasic, detailed, comprehensive (default: detailed)

Example MCP call:

{
"name": "instagram-audience-analysis",
"description": "Analyze Instagram audience quality and authenticity. Detect bot followers, inflated engagement, and audience demographics signals.",
"inputSchema": {
"type": "object",
"properties": {
"target": {
"type": "string",
"description": "Instagram username"
},
"depth": {
"type": "string",
"enum": ["basic", "detailed", "comprehensive"],
"description": "Analysis depth (default: detailed)"
}
},
"required": ["target"]
}
}

Cost: $0.10/audience analysis event


Integration with AI tools

  • Claude Desktop: Add Apify MCP to claude_desktop_config.json
  • Cursor IDE: Configure MCP server in settings → MCP Servers
  • Windsurf: Add to MCP server list via /settings
  • Custom agents: Use any MCP client library (Python, Node.js, Go)

Pricing

This actor uses Apify's Pay-Per-Event (PPE) model — you are charged per result returned. No charge for queries that return zero results.

Event TypePriceDescription
Credibility check$0.045Per profile analyzed
Brand monitoring$0.08Per brand per time period
Audience analysis$0.10Per analysis report
Post extraction$0.01Per post with engagement data
Competitor comparison$0.12Multi-profile comparison

Free tier: 30 minutes compute/month, 100MB storage Paid plans: Starter from $49/month for higher compute limits


Input Parameters

ParameterTypeRequiredDefaultDescription
targetstringYesInstagram username, URL, or search query
analysisTypeenumNoprofileprofile, posts, competitors, hashtags, search, comments, location
searchstringNoSearch Instagram for users, hashtags, places
searchTypeenumNousersuser, hashtag, place, users, hashtags, places
resultsTypeenumNodetailsdetails or posts
searchLimitintegerNo10Maximum search results (1-100)
resultsLimitintegerNo20Maximum results per target (1-500)
maxResultsintegerNo10Backward compatibility (1-1000)
includeBusinessIntelligencebooleanNofalseAdd engagement rate and competitor analysis
exportFormatenumNojsonjson, csv, excel, markdown
checkOnlybooleanNofalseFree smoke test — no charge
proxyTypeenumNoRESIDENTIALDATACENTER or RESIDENTIAL
sessionCookiesarrayNoInstagram session cookies for authenticated scraping
debugModebooleanNofalseMinimal extraction for health checks

Output

Credibility Report

{
"profile": {
"username": "tech_influencer",
"fullName": "Tech Influencer",
"followers": 850000,
"following": 1200,
"postsCount": 450,
"isVerified": false,
"businessCategory": "Digital Creator"
},
"credibility": {
"engagementRate": 4.5,
"likesPerFollower": 0.042,
"commentsPerFollower": 0.003,
"followerGrowthRate": "normal",
"audienceQuality": "high",
"botScore": 8,
"authenticityGrade": "A"
},
"fraudSignals": {
"suddenFollowerSpikes": false,
"lowEngagementRatio": false,
"suspectFollowerPatterns": false
},
"recommendations": [
"Engagement rate is healthy (4.5%)",
"Follower growth is organic",
"Audience appears genuine"
]
}

Brand Monitoring Report

{
"brandName": "@nike",
"mentionsCount": 15420,
"sentiment": {
"positive": 72,
"negative": 8,
"neutral": 20
},
"topPosts": [...],
"trendingHashtags": ["#justdoit", "#nikes"],
"competitorMentions": ["@adidas", "@puma"]
}

Authentication / Setup

No API key required. This actor uses Apify's managed proxy infrastructure for authentication.

For production use with high-security targets:

  1. Set proxyType to RESIDENTIAL in input parameters
  2. Or provide sessionCookies for authenticated scraping
  3. Configure residential proxies in Apify Console

Error Handling

Error CodeCauseFix
RATE_LIMIT_ERRORToo many requestsWait and retry, use residential proxy
EXTRACTION_ERRORProfile is private or not foundVerify profile exists and is public
NETWORK_ERRORConnectivity issueCheck internet, retry with proxy
VALIDATION_ERRORInvalid input parametersReview input schema, fix format
PLATFORM_ERRORInstagram issueInstagram may be experiencing issues, try later

Zero-result handling: If no results match your query, no charge is incurred under PPE billing.


Rate Limits

Rate limits depend on your Apify plan. Higher-tier plans provide more compute units and faster extraction.

PlanCompute UnitsBehavior
FreeLimitedStandard throttling
Basic100/monthFaster extraction
Starter500/monthPrioritized processing
Professional2000/monthMinimal throttling
ScaleUnlimitedFastest extraction

Use checkOnly: true mode to verify availability before running large extractions.


Use Cases

Use Case 1: Pre-Campaign Influencer Vetting

Assess influencer credibility before committing to campaign spend:

{
"input": {
"target": "fitness_influencer",
"analysisType": "profile",
"resultsLimit": 100,
"includeBusinessIntelligence": true
}
}

Use Case 2: Brand Reputation Monitoring

Track brand mentions and sentiment over time:

{
"input": {
"target": "yourbrand",
"searchType": "hashtags",
"analysisType": "search",
"includeBusinessIntelligence": true
}
}

Use Case 3: Competitor Campaign Analysis

Analyze competitor influencer partnerships:

{
"input": {
"target": "competitor1,competitor2,competitor3",
"analysisType": "competitors",
"resultsLimit": 50
}
}

Use Case 4: AI Agent Lead Scoring

Integrate with AI agents for automated influencer lead scoring:

// Pseudocode: AI agent influencer qualification
const credibility = await callActor('red.cars/instagram-business-intelligence-pro', {
target: 'prospect_influencer',
includeBusinessIntelligence: true
});
if (credibility.engagementRate > 3.0 && credibility.botScore > 7) {
await crm.addLead({ ...credibility, score: 'high' });
} else {
await crm.addLead({ ...credibility, score: 'low' });
}

  • Instagram Scraper Pro — Full Instagram data extraction with 8 MCP tools
  • X Business Intelligence Pro — Twitter/X sentiment and competitive analysis
  • Business Contact Intelligence Pro — B2B contact enrichment and validation
  • LinkedIn Company Intelligence Pro — B2B company research and competitive analysis

Troubleshooting

Low engagement detected:

  • Profile may have legitimately low engagement
  • Check botScore and authenticityGrade for fraud signals
  • Consider niche and follower count for context

Private profile blocked:

  • Cannot extract from private accounts without following
  • Try public profiles or use search for public content

Rate limiting:

  • Wait 60 seconds before retrying
  • Enable residential proxy for better success rate
  • Reduce batch size for large queries

Changelog

VersionDateChanges
1.0.02026-04-08Initial release with MCP tools and PPE pricing
0.9.02026-03-20Added credibility scoring and fake follower detection
0.8.02026-02-15Beta release with basic profile analysis

FAQ

Q: How accurate is fake follower detection? A: The bot score is based on engagement patterns, follower growth anomalies, and audience quality signals. Accuracy is typically 85-95% for clear cases, but may vary for subtle manipulation.

Q: Can I extract from private accounts? A: No. This actor only extracts publicly available data from public Instagram profiles.

Q: How does PPE billing work? A: You are charged per result returned. If a query returns zero results, no charge is incurred.

Q: What's the difference from Instagram Scraper Pro? A: Instagram Scraper Pro focuses on data extraction. This actor focuses on business intelligence: credibility assessment, fake follower detection, and brand monitoring.

Q: Can I export in Markdown for LLM use? A: Yes. Set exportFormat to markdown for token-efficient content optimized for AI processing.


Support

  • Documentation: This README and Apify Console input schema
  • Issues: Report via Apify Console or contact red.cars support
  • Enterprise: Contact for custom integration and volume pricing

Data Source: Instagram (instagram.com) — publicly available data

Terms of Service: This actor is provided for legitimate business intelligence purposes only. Users must comply with Instagram's Terms of Service and applicable laws. Do not use extracted data for spam, harassment, or unauthorized commercial purposes.

Privacy: All extracted data is processed in accordance with applicable privacy laws. Do not use this tool for unauthorized data collection or privacy-violating activities.

Disclaimer: Credibility assessments are based on algorithmic analysis of public signals. Red.cars is not responsible for decisions made based on extracted data. Always verify critical assessments independently.


red.cars Intelligence Fleet — apify.com/red.cars