私のワークフロー 2
中級
これはLead Generation, AI Summarization分野の自動化ワークフローで、10個のノードを含みます。主にCode, ScheduleTrigger, ScrapegraphAiなどのノードを使用。 Eventbriteに基づく会議ネットワーキングインテリジェンス、ScrapeGraphAIを使用
前提条件
- •特別な前提条件なし、インポートしてすぐに使用可能
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"id": "VhEwspDqzu7ssFVE",
"meta": {
"instanceId": "f4b0efaa33080e7774e0d9285c40c7abcd2c6f7cf1a8b901fa7106170dd4cda3",
"templateCredsSetupCompleted": true
},
"name": "My workflow 2",
"tags": [
{
"id": "DxXGubfBzRKh6L8T",
"name": "Revenue Optimization",
"createdAt": "2025-07-25T16:24:30.370Z",
"updatedAt": "2025-07-25T16:24:30.370Z"
},
{
"id": "IxkcJ2IpYIxivoHV",
"name": "Content Strategy",
"createdAt": "2025-07-25T12:57:37.677Z",
"updatedAt": "2025-07-25T12:57:37.677Z"
},
{
"id": "PAKIJ2Mm9EvRcR3u",
"name": "Trend Monitoring",
"createdAt": "2025-07-25T12:57:37.670Z",
"updatedAt": "2025-07-25T12:57:37.670Z"
},
{
"id": "YtfXmaZk44MYedPO",
"name": "Dynamic Pricing",
"createdAt": "2025-07-25T16:24:30.369Z",
"updatedAt": "2025-07-25T16:24:30.369Z"
}
],
"nodes": [
{
"id": "1963915b-9fa6-4f49-83e5-21b4f6f7dc42",
"name": "スケジュールトリガー",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-1696,
912
],
"parameters": {
"rule": {
"interval": [
{
"field": "weeks"
}
]
}
},
"typeVersion": 1.2
},
{
"id": "f310faab-de2c-4897-a1f5-d89358f8da9c",
"name": "カンファレンススクレイパー",
"type": "n8n-nodes-scrapegraphai.scrapegraphAi",
"position": [
-1120,
976
],
"parameters": {
"userPrompt": "Extract conference information from this page. Use the following schema for response: { \"conference_name\": \"Tech Summit 2024\", \"date\": \"2024-08-15\", \"location\": \"San Francisco, CA\", \"venue\": \"Moscone Center\", \"description\": \"Annual technology conference\", \"ticket_price\": \"$299\", \"organizer\": \"Tech Events Inc\", \"website_url\": \"https://example.com/conference\", \"registration_url\": \"https://example.com/register\", \"categories\": [\"Technology\", \"Business\"], \"estimated_attendees\": \"500-1000\" }",
"websiteUrl": "https://www.eventbrite.com/d/ca--san-francisco/business-conferences/"
},
"typeVersion": 1
},
{
"id": "1cd36fc6-f574-4cb7-8595-48a6aa953b59",
"name": "スピーカーアナライザー",
"type": "n8n-nodes-scrapegraphai.scrapegraphAi",
"position": [
-560,
976
],
"parameters": {
"userPrompt": "Extract speaker information from this conference website. Use the following schema: { \"speakers\": [{ \"name\": \"John Doe\", \"title\": \"CEO\", \"company\": \"Tech Corp\", \"bio\": \"Tech industry veteran\", \"linkedin_url\": \"https://linkedin.com/in/johndoe\", \"session_title\": \"Future of AI\", \"session_time\": \"10:00 AM\", \"session_track\": \"Main Stage\", \"expertise_areas\": [\"AI\", \"Machine Learning\"], \"contact_priority\": \"High\" }] }",
"websiteUrl": "={{ $json.website_url }}"
},
"typeVersion": 1
},
{
"id": "32918675-9362-4528-9fbf-69c91ef2fd7c",
"name": "アジェンダパーサー",
"type": "n8n-nodes-scrapegraphai.scrapegraphAi",
"position": [
-32,
960
],
"parameters": {
"userPrompt": "Extract the conference agenda and schedule. Use this schema: { \"agenda\": [{ \"time\": \"09:00 AM\", \"session_title\": \"Opening Keynote\", \"speaker\": \"Jane Smith\", \"track\": \"Main Stage\", \"duration\": \"60 minutes\", \"session_type\": \"Keynote\", \"topics\": [\"Industry Trends\"], \"networking_break\": false, \"location\": \"Hall A\" }], \"networking_opportunities\": [{ \"type\": \"Coffee Break\", \"time\": \"10:30 AM\", \"duration\": \"30 minutes\", \"location\": \"Lobby\" }] }",
"websiteUrl": "={{ $('Conference Scraper').item.json.website_url }}"
},
"typeVersion": 1
},
{
"id": "fe3d63f8-2557-4e94-a810-aaff115bd8e0",
"name": "ネットワーキング機会ファインダー",
"type": "n8n-nodes-base.code",
"notes": "AI-powered analysis of\nnetworking opportunities\nand strategic contacts",
"position": [
656,
960
],
"parameters": {
"jsCode": "// Get all input data\nconst conferenceData = $('Conference Scraper').item.json;\nconst speakerData = $('Speaker Analyzer').item.json;\nconst agendaData = $('Agenda Parser').item.json;\n\n// Analyze networking opportunities\nfunction analyzeNetworkingOpportunities(conference, speakers, agenda) {\n const opportunities = [];\n \n // Extract high-priority speakers\n const highPrioritySpeakers = speakers.speakers?.filter(s => s.contact_priority === 'High') || [];\n \n // Find networking breaks and coffee sessions\n const networkingTimes = agenda.networking_opportunities || [];\n \n // Identify strategic sessions to attend\n const strategicSessions = agenda.agenda?.filter(session => \n session.session_type === 'Panel' || \n session.session_type === 'Workshop' ||\n session.topics?.some(topic => ['AI', 'Innovation', 'Strategy', 'Leadership'].includes(topic))\n ) || [];\n \n // Generate networking recommendations\n highPrioritySpeakers.forEach(speaker => {\n opportunities.push({\n type: 'Speaker Meeting',\n target: speaker.name,\n company: speaker.company,\n session: speaker.session_title,\n time: speaker.session_time,\n priority: 'High',\n reason: `Industry expert in ${speaker.expertise_areas?.join(', ')}`,\n approach: `Attend their session: \"${speaker.session_title}\" and approach during Q&A or after`,\n linkedin: speaker.linkedin_url\n });\n });\n \n // Add general networking opportunities\n networkingTimes.forEach(netTime => {\n opportunities.push({\n type: 'General Networking',\n time: netTime.time,\n duration: netTime.duration,\n location: netTime.location,\n priority: 'Medium',\n approach: 'Casual conversations with attendees'\n });\n });\n \n return {\n conference_overview: {\n name: conference.conference_name,\n date: conference.date,\n location: conference.location,\n estimated_attendees: conference.estimated_attendees\n },\n networking_opportunities: opportunities,\n strategic_sessions: strategicSessions,\n key_speakers: highPrioritySpeakers,\n total_opportunities: opportunities.length\n };\n}\n\n// Process the data\nconst analysis = analyzeNetworkingOpportunities(conferenceData, speakerData, agendaData);\n\nconsole.log(`Found ${analysis.total_opportunities} networking opportunities`);\n\nreturn [{ json: analysis }];"
},
"notesInFlow": true,
"typeVersion": 2
},
{
"id": "298e8dc7-5d9d-4c73-a363-c67569573a2f",
"name": "付箋 1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1904,
496
],
"parameters": {
"color": 4,
"width": 575,
"height": 674,
"content": "# Step 1: Weekly Trigger ⏰\n\nAutomatically searches for new industry conferences every week.\n\n## Configuration Options\n- **Frequency**: Weekly (every Monday at 9 AM)\n- **Timezone**: Automatically uses your local timezone\n- **Customizable**: Change to daily, bi-weekly, or monthly\n\n## Why Weekly?\n- Conference announcements happen regularly\n- Early bird pricing often available\n- Better speaker lineup access\n- More networking preparation time"
},
"typeVersion": 1
},
{
"id": "115330c1-e0bf-45db-b3d3-479dda41d6a0",
"name": "付箋 2",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1328,
496
],
"parameters": {
"color": 4,
"width": 575,
"height": 674,
"content": "# Step 2: Conference Discovery 🔍\n\nScrapes conference listing websites to find relevant industry events.\n\n## What it extracts:\n- Conference name and dates\n- Location and venue details\n- Ticket prices and registration info\n- Event categories and focus areas\n- Organizer information\n- Expected attendance numbers\n\n## Supported Sources:\n- Eventbrite, Meetup, industry websites\n- Association event calendars\n- Conference aggregator sites"
},
"typeVersion": 1
},
{
"id": "a366cc72-9fce-4b2d-adeb-1f3a0dfa6894",
"name": "付箋 3",
"type": "n8n-nodes-base.stickyNote",
"position": [
-752,
496
],
"parameters": {
"color": 4,
"width": 575,
"height": 674,
"content": "# Step 3: Speaker Intelligence 🎤\n\nAnalyzes conference speakers to identify key networking targets.\n\n## Speaker Analysis:\n- **Contact Priority**: High/Medium/Low ranking\n- **Professional Background**: Title, company, experience\n- **Session Details**: Topics, time slots, tracks\n- **Social Profiles**: LinkedIn, Twitter connections\n- **Expertise Mapping**: Relevant skill areas\n\n## Smart Prioritization:\n- C-level executives = High priority\n- Industry thought leaders = High priority\n- Potential partners/clients = Medium priority"
},
"typeVersion": 1
},
{
"id": "4a20f389-ea9d-4e6f-8182-75e808c28081",
"name": "付箋 4",
"type": "n8n-nodes-base.stickyNote",
"position": [
-176,
496
],
"parameters": {
"color": 4,
"width": 575,
"height": 674,
"content": "# Step 4: Agenda Analysis 📅\n\nExtracts and analyzes the complete conference schedule.\n\n## Schedule Intelligence:\n- **Session Mapping**: All talks, workshops, panels\n- **Speaker-Session Links**: Who's speaking when\n- **Track Organization**: Main stage, breakout rooms\n- **Networking Breaks**: Coffee, lunch, social events\n- **Strategic Sessions**: High-value content identification\n\n## Time Optimization:\n- Identifies session conflicts\n- Maps networking opportunities\n- Highlights must-attend sessions"
},
"typeVersion": 1
},
{
"id": "b1207fca-d339-469b-aebd-b3f9160cc234",
"name": "付箋 5",
"type": "n8n-nodes-base.stickyNote",
"position": [
400,
496
],
"parameters": {
"color": 4,
"width": 575,
"height": 674,
"content": "# Step 5: Networking Strategy AI 🤝\n\nAI-powered analysis to maximize networking ROI.\n\n## Strategic Analysis:\n- **Contact Prioritization**: Ranks speakers by business value\n- **Approach Recommendations**: Best ways to connect\n- **Timing Optimization**: When and where to network\n- **Conversation Starters**: Based on shared interests\n- **Follow-up Planning**: Post-event connection strategy\n\n## Output Intelligence:\n- Networking opportunity scoring\n- Strategic session recommendations\n- Contact approach strategies\n- Priority meeting schedule"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "54507b17-8ae6-466a-ab83-aa6b0a00b24d",
"connections": {
"32918675-9362-4528-9fbf-69c91ef2fd7c": {
"main": [
[
{
"node": "fe3d63f8-2557-4e94-a810-aaff115bd8e0",
"type": "main",
"index": 0
}
]
]
},
"1963915b-9fa6-4f49-83e5-21b4f6f7dc42": {
"main": [
[
{
"node": "f310faab-de2c-4897-a1f5-d89358f8da9c",
"type": "main",
"index": 0
}
]
]
},
"1cd36fc6-f574-4cb7-8595-48a6aa953b59": {
"main": [
[
{
"node": "32918675-9362-4528-9fbf-69c91ef2fd7c",
"type": "main",
"index": 0
}
]
]
},
"f310faab-de2c-4897-a1f5-d89358f8da9c": {
"main": [
[
{
"node": "1cd36fc6-f574-4cb7-8595-48a6aa953b59",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - リード獲得, AI要約
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
私のワークフロー 2
ScrapeGraphAIと戦略の計画を用いたAI駆動のコンテンツギャップ分析
Code
Google Sheets
Schedule Trigger
+
Code
Google Sheets
Schedule Trigger
18 ノードvinci-king-01
市場調査
不動産保守コスト分析
ScrapeGraphAIを使って不動産のメンテナンスコストを分析し、予算計画を立てる
Code
Schedule Trigger
Scrapegraph Ai
+
Code
Schedule Trigger
Scrapegraph Ai
12 ノードvinci-king-01
市場調査
不動産市場の感情分析
ScrapeGraphAIとTelegramを使って不動産市場の感情を分析する
Code
Telegram
Schedule Trigger
+
Code
Telegram
Schedule Trigger
15 ノードvinci-king-01
市場調査
財産
ScrapeGraphAIを使用してZillowの不動産一覧をTelegramに自動送信
Code
Telegram
Schedule Trigger
+
Code
Telegram
Schedule Trigger
8 ノードvinci-king-01
市場調査
ScrapegraphAIを使ってニュース記事を自動スクラップしてGoogleシートに保存
ScrapegraphAIを使ってニュース記事を自動スクレイピングし、Google Sheetsに保存
Code
Google Sheets
Schedule Trigger
+
Code
Google Sheets
Schedule Trigger
8 ノードvinci-king-01
市場調査
私のワークフロー 2
監視規制コンプライアンスの自動化によるスクラップ graPHAIとメールアラートの使用
Code
Email Send
Schedule Trigger
+
Code
Email Send
Schedule Trigger
14 ノードvinci-king-01
その他