Skip to main content

Detect influencer fraud and fake followers with Instagram, X, TikTok and Claude

Workflow preview

Workflow preview
100%
Detect influencer fraud and fake followers with Instagram, X, TikTok and Claude preview
Open on n8n.io

1. Workflow Overview

Analyzes influencer profiles and scores authenticity before brand partnership approval. Detects fake followers, bot accounts, and suspicious engagement patterns using AI powered behavioral analysis...

Best for

  • Market Research automation workflows
  • AI Summarization automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.webhook, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.emailsend, n8n-nodes-base.postgres, n8n-nodes-base.stickynote

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Oneclick AI Squad.

Original n8n.io source

1.1 Workflow description

Title
Detect influencer fraud and fake followers with Instagram, X, TikTok and Claude
Workflow name
Detect influencer fraud and fake followers with Instagram, X, TikTok and Claude

Analyzes influencer profiles and scores authenticity before brand partnership approval. Detects fake followers, bot accounts, and suspicious engagement patterns using AI-powered behavioral analysis.

🎯 How It Works

Simple 7-Node Workflow:

  1. Input → Submit influencer username and platform (Instagram/Twitter/TikTok)
  2. Fetch → Retrieve complete profile data and engagement metrics
  3. Analyze → Examine follower patterns, ratios, growth velocity, engagement
  4. AI Check → Deep behavioral analysis with Claude AI
  5. Report → Generate comprehensive fraud assessment
  6. Notify → Send detailed email report to partnership team
  7. Log → Save to database for tracking

📊 Detection Capabilities

  • Follower Authenticity: Analyzes follower-to-following ratio (red flag if < 0.5)
  • Engagement Quality: Calculates engagement rate (industry avg: 1-5%)
  • Growth Patterns: Detects suspicious rapid follower spikes
  • Content Consistency: Evaluates posting frequency and regularity
  • Profile Completeness: Checks verification, bio, activity
  • AI Behavioral Analysis: Deep pattern recognition for sophisticated fraud

⚙️ Setup Instructions

1. Configure API Access

Social Platform APIs:

  • Instagram: Get Graph API access token from Meta for Developers
  • Twitter: OAuth 2.0 credentials from Twitter Developer Portal
  • TikTok: Business API credentials (optional)

AI Analysis:

  • Anthropic Claude API: Get key from console.anthropic.com
  • Used for advanced behavioral fraud detection

2. Setup Notifications

  • Configure SMTP in "Send Report" node
  • Update recipient email ([email protected])
  • Customize HTML template if needed

3. Database (Optional)

  • Create PostgreSQL table (schema below)
  • Add database credentials to final node
  • Skip if you don't need historical tracking

Database Schema

CREATE TABLE partnerships.influencer_fraud_reports (
 id SERIAL PRIMARY KEY,
 report_id VARCHAR(255) UNIQUE,
 username VARCHAR(255),
 platform VARCHAR(50),
 profile_url TEXT,
 followers BIGINT,
 following BIGINT,
 posts INTEGER,
 verified BOOLEAN,
 authenticity_score INTEGER,
 risk_level VARCHAR(50),
 final_decision TEXT,
 partnership_recommendation VARCHAR(100),
 ai_verdict VARCHAR(50),
 ai_confidence VARCHAR(20),
 red_flags JSONB,
 fake_follower_estimate VARCHAR(20),
 detailed_analysis JSONB,
 created_at TIMESTAMP
);

🚀 How to Use

Webhook Endpoint: POST /webhook/influencer-fraud-check

Request Body:

{
 "username": "influencer_handle",
 "platform": "instagram" // or "twitter", "tiktok"
}

Example:

curl -X POST https://your-n8n.com/webhook/influencer-fraud-check \
 -H "Content-Type: application/json" \
 -d '{"username":"example_user","platform":"instagram"}'

📈 Scoring System

Overall Authenticity Score (0-100):

  • 80-100: LOW RISK → Approved for partnership
  • 60-79: MEDIUM RISK → Requires manual review
  • 40-59: HIGH RISK → Caution advised
  • 0-39: CRITICAL RISK → Rejected

Weighted Components:

  • Follower Quality (25%)
  • Engagement Quality (35%)
  • Content Consistency (15%)
  • Growth Pattern (15%)
  • Profile Completeness (10%)

Final Score = 70% Automated + 30% AI Analysis

🚩 Red Flags Detected

  • Following-to-follower ratio > 2:1
  • Engagement rate < 0.5%
  • Rapid growth (>50K followers/month)
  • Large following with <10 posts
  • No verification with >100K followers
  • Bot-like comment patterns
  • Suspicious audience demographics

💰 Cost Estimate

  • Instagram/Twitter API: Free tier usually sufficient
  • Claude AI: ~$0.10-0.20 per analysis
  • Estimated: $5-10/month for 50 checks

💡 Best Practices

  1. Always verify HIGH and MEDIUM risk profiles manually
  2. Cross-reference with other influencer databases
  3. Request media kit and past campaign results
  4. Trial campaigns before large commitments
  5. Monitor performance metrics post-partnership
  6. Update detection thresholds based on your findings

🎯 What You Get

Detailed Report Includes:

  • Overall authenticity score (0-100)
  • Risk level classification
  • Partnership recommendation (APPROVE/REVIEW/REJECT)
  • Engagement quality analysis
  • Fake follower percentage estimate
  • AI behavioral insights
  • Specific red flags and concerns
  • Next steps and recommendations

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Influencer Profile Input

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 1.1

Block 2 - Fetch Influencer Data

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 3 - Analyze Follower Patterns

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 4 - AI Authenticity Analysis

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 5 - Generate Fraud Report

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 6 - Send Report & Notification

Type / Role
n8n-nodes-base.emailSend - emailSend
Config choices
Version 2.1

Block 7 - Save to Database

Type / Role
n8n-nodes-base.postgres - postgres
Config choices
Version 2.4

Block 8 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 9 - Sticky Note - Workflow

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 10 - Sticky Note - Workflow1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 11 - Sticky Note - Workflow2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Detect influencer fraud and fake followers with Instagram, X, TikTok and Claude
Complexity intermediate
Nodes 11
Categories Market Research, AI Summarization
Author Oneclick AI Squad
Published 25 Feb 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/13708/13708.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Detect influencer fraud and fake followers with Instagram, X, TikTok and Claude do?

Analyzes influencer profiles and scores authenticity before brand partnership approval. Detects fake followers, bot accounts, and suspicious engagement patterns using AI powered behavioral analysis...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Market Research, AI Summarization use case.