Block 1 - Influencer Profile Input
- Type / Role
- n8n-nodes-base.webhook - webhook
- Config choices
- Version 1.1
Analyzes influencer profiles and scores authenticity before brand partnership approval. Detects fake followers, bot accounts, and suspicious engagement patterns using AI powered behavioral analysis...
n8n-nodes-base.webhook, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.emailsend, n8n-nodes-base.postgres, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Oneclick AI Squad.
Original n8n.io sourceAnalyzes influencer profiles and scores authenticity before brand partnership approval. Detects fake followers, bot accounts, and suspicious engagement patterns using AI-powered behavioral analysis.
Simple 7-Node Workflow:
Social Platform APIs:
AI Analysis:
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
);
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"}'
Overall Authenticity Score (0-100):
Weighted Components:
Final Score = 70% Automated + 30% AI Analysis
Detailed Report Includes:
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.
| 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 |
Use the JSON export at /data/workflows/13708/13708.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
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.
Analyzes influencer profiles and scores authenticity before brand partnership approval. Detects fake followers, bot accounts, and suspicious engagement patterns using AI powered behavioral analysis...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
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.