Block 1 - Webhook
- Type / Role
- n8n-nodes-base.webhook - webhook
- Config choices
- Version 2.1
This workflow is provided as-is. Please review and test before using in production.
Automated Influencer Campaign Management System A comprehensive n8n workflow template for streamlining influencer application processing with real time social media data validation , intelligent sc...
n8n-nodes-base.webhook, n8n-nodes-base.code, n8n-nodes-verifiemail.verifiemail, n8n-nodes-base.switch, n8n-nodes-base.stopanderror, n8n-nodes-base.httprequest, n8n-nodes-base.merge, n8n-nodes-base.if
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Jitesh Dugar.
Original n8n.io sourceA comprehensive n8n workflow template for streamlining influencer application processing with real-time social media data validation, intelligent scoring algorithms, and automated onboarding workflows.
Offers: Real-time API integration, intelligent scoring, automated actions, scalable processing.
Connect your application form to Webhook:
POST → https://[your-n8n-url]/webhook/influencer-signup
Sign up for RapidAPI and subscribe to Instagram120 + YouTube138 APIs.
Get VerifiEmail API key (100 free verifications/month).
Configure Gmail OAuth2 in Google Cloud Console for email automation.
Create a Google Sheets database for approved influencer storage.
Add credentials in n8n: RapidAPI, VerifiEmail, Gmail, Google Sheets.
Customize scoring thresholds & email templates in Function nodes.
Test with sample data:
{
"name": "Test Creator",
"email": "[email protected]",
"social_handles": {
"instagram": "testuser",
"youtube": "testchannel"
},
"niche": "fitness",
"rate_card": 500
}
n8n instance (cloud or self-hosted)
API credentials:
Form/website integration → sends webhook data
Google Sheets for database & reporting
Pricing Plans:
n8n Example:
{
"method": "POST",
"url": "https://instagram120.p.rapidapi.com/api/instagram/profile",
"headers": {
"X-RapidAPI-Host": "instagram120.p.rapidapi.com",
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"Content-Type": "application/json"
},
"body": {
"username": "{{ $('Data Sanitizer').item.json.social_handles.instagram }}"
}
}
Pricing Plans:
n8n Example:
{
"method": "GET",
"url": "https://youtube138.p.rapidapi.com/channel/details",
"headers": {
"X-RapidAPI-Host": "youtube138.p.rapidapi.com",
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY"
},
"queryParameters": {
"id": "{{ $('Webhook').item.json.body.social_handles.youtube }}",
"hl": "en",
"gl": "US"
}
}
Social Media Validation
Intelligent Scoring
Automation Actions
✔️ Saves 80-90% processing costs ✔️ Cuts manual review time from 15 minutes → 30 seconds ✔️ Prevents fraud with real-time validation ✔️ Scales infinitely with no extra staffing
// Example website form submission
fetch('https://your-n8n-instance.com/webhook/influencer-signup', {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify(formData)
});
Sample Application Data:
{
"name": "Sarah Johnson",
"email": "[email protected]",
"social_handles": {
"instagram": "sarahfitlife",
"youtube": "SarahFitnessJourney"
},
"niche": "fitness",
"country": "US",
"rate_card": 750
}
This template is provided as-is for educational and commercial use. Users are responsible for ensuring compliance with laws, platform TOS, and data privacy rules.
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 | Automate influencer evaluation & campaign management with Instagram/YouTube APIs |
|---|---|
| Complexity | advanced |
| Nodes | 24 |
| Categories | Lead Generation, AI Summarization |
| Author | Jitesh Dugar |
| Published | 26 Sept 2025 |
Use the JSON export at /data/workflows/8963/8963.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.
Automated Influencer Campaign Management System A comprehensive n8n workflow template for streamlining influencer application processing with real time social media data validation , intelligent sc...
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 Lead Generation, AI Summarization use case.