Block 1 - Schedule Trigger
- Type / Role
- n8n-nodes-base.scheduleTrigger - scheduleTrigger
- Config choices
- Version 1.2
This workflow is provided as-is. Please review and test before using in production.
AI Conference Intelligence & Networking Optimizer with ScrapeGraphAI ️ IMPORTANT: This template requires a self hosted n8n instance with ScrapeGraphAI integration. It cannot be used with n8n ...
n8n-nodes-base.scheduletrigger, n8n-nodes-scrapegraphai.scrapegraphai, n8n-nodes-base.code, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by vinci-king-01.
Original n8n.io source> ⚠️ IMPORTANT: This template requires a self-hosted n8n instance with ScrapeGraphAI integration. It cannot be used with n8n Cloud due to web scraping capabilities.
This workflow automatically discovers industry conferences and provides AI-powered networking intelligence to maximize your event ROI.
This workflow automatically discovers industry conferences and provides AI-powered networking intelligence to maximize your event ROI.
Setup time: 10-15 minutes
# ScrapeGraphAI Setup
1. Sign up at https://scrapegraph.ai
2. Generate API key from dashboard
3. Add credentials in n8n: Settings > Credentials > Add Credential > ScrapeGraphAI
Modify Conference Sources:
// In Eventbrite Scraper node, update the URL:
const targetUrl = "https://www.eventbrite.com/d/united-states/technology/";
const industryFilter = "?q=artificial+intelligence";
Adjust Networking Priorities:
// In Speaker Intelligence node, modify scoring weights:
const priorityWeights = {
executive_level: 0.4,
company_size: 0.3,
industry_relevance: 0.2,
speaking_topic: 0.1
};
Customize Output Format:
// In Networking Strategy node, modify output structure:
const outputFormat = {
high_priority: speakers.filter(s => s.score > 8),
medium_priority: speakers.filter(s => s.score > 6 && s.score <= 8),
networking_plan: generateApproachStrategy(speakers)
};
{
"conference_data": {
"event_name": "AI Summit 2024",
"date": "2024-06-15",
"location": "San Francisco, CA",
"speakers": [
{
"name": "Dr. Sarah Chen",
"title": "CTO, TechCorp",
"company": "TechCorp Inc",
"networking_score": 9.2,
"priority": "high",
"approach_strategy": "Connect via LinkedIn, mention shared AI interests"
}
],
"networking_plan": {
"high_priority_targets": 5,
"recommended_approach": "Focus on AI ethics panel speakers",
"schedule_optimization": "Attend morning keynotes, network during breaks"
}
}
}
For advanced customization or enterprise deployments, consider:
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 | Discovering and analyzing conferences for networking with ScrapeGraphAI |
|---|---|
| Complexity | intermediate |
| Nodes | 10 |
| Categories | Content Creation, Multimodal AI |
| Author | vinci-king-01 |
| Published | 31 Jul 2025 |
Use the JSON export at /data/workflows/6728/6728.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.
AI Conference Intelligence & Networking Optimizer with ScrapeGraphAI ️ IMPORTANT: This template requires a self hosted n8n instance with ScrapeGraphAI integration. It cannot be used with n8n ...
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 Content Creation, Multimodal AI use case.