πŸ“Š Detect influencer fraud and fake followers with Instagram, X, TikTok and Claude

⚑ 44 views Β· πŸ“Š Market Research & Insights

πŸ’‘ Pro Tip β€” Since TikTok doesn’t have a public API, getting data usually means fragile HTTP scraping. ScraperNode is a community node that gives you clean JSON for TikTok profiles, videos, and comments β€” drop it into your workflow and skip the parsing.

View All Scrapers

Description

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

βš™οΈ Setup Instructions

1. Configure API Access

Social Platform APIs:

AI Analysis:

2. Setup Notifications

3. Database (Optional)

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):

Weighted Components:

Final Score = 70% Automated + 30% AI Analysis

🚩 Red Flags Detected

πŸ’° Cost Estimate

πŸ’‘ 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:

πŸ”— Nodes Used

Send Email, HTTP Request, Postgres, Webhook

πŸ“₯ Import

Download workflow.json and import into n8n: Workflow menu β†’ Import from File

πŸ“– Importing guide Β· πŸ”‘ Credential setup