TavilyとGeminiを使って毎週のハリウッド映画ブリーフィングを自動化する
中級
これはSocial Media, AI Summarization分野の自動化ワークフローで、11個のノードを含みます。主にGmail, Agent, HttpRequestTool, ScheduleTrigger, LmChatGoogleGeminiなどのノードを使用。 TavilyとGeminiを使って週次のハリウッド映画レポートを自動化
前提条件
- •Googleアカウント + Gmail API認証情報
- •ターゲットAPIの認証情報が必要な場合あり
- •Google Gemini API Key
使用ノード (11)
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"id": "oca5MgiXvuk6uO9B",
"meta": {
"instanceId": "9c8f658dbece48b519a8ad7757c7d7db7a30c5f3fd29c9dc8afae32fe0c7711a",
"templateCredsSetupCompleted": true
},
"name": "Automate weekly Hollywood film briefing via Tavily and Gemini",
"tags": [],
"nodes": [
{
"id": "33bd06d0-a733-47d0-88ea-d921780bc4a9",
"name": "メッセージを送信",
"type": "n8n-nodes-base.gmail",
"position": [
1504,
0
],
"webhookId": "68887666-c2da-4012-8d34-1713fb13960d",
"parameters": {
"sendTo": "titanfactz@gmail.com",
"message": "={{ $json.output.body }}",
"options": {},
"subject": "={{ $json.output.subject }}"
},
"credentials": {
"gmailOAuth2": {
"id": "tgaDxPWU6CLLz8ly",
"name": "Gmail account"
}
},
"typeVersion": 2.1
},
{
"id": "49971303-18e4-4c16-b007-061cc84dbf62",
"name": "ハリウッドニュース調査エージェント",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
736,
0
],
"parameters": {
"text": "=You are an AI summarizer creating a daily Hollywood film industry briefing.\n\nYou will receive four Tavily search results:\n- Hollywood movies releasing this week\n- Hollywood box office results last week\n- Hollywood news\n- Must‑watch Hollywood movies currently in theatres\n\nEach result contains `title` and `content`.\n\n---\n\n### TASK\nSummarize each result into Gmail‑friendly HTML with emojis and bullet points:\n\n🎬 Releases \n📊 Box Office \n📰 News \n🎥 Must-Watch Movies \n\nFor **Must-Watch Movies**:\n- If details (reviews/hype) exist, summarize them briefly.\n- If only movie names appear, **assume reasons** (e.g., “great for IMAX/4DX,” “big visual effects,” “audience buzz,” or “fan‑favorite franchise”).\n\nIf no data at all, write “No data available”.\n\n---\n\n### OUTPUT FORMAT\nReturn JSON:\n{\n \"subject\": \"Daily Hollywood Film Industry Briefing – {{ $json['Readable date'] }}\",\n \"body\": \"<html>\n 🎬 Releases\n <ul><li>Movie 1</li></ul>\n 📊 Box Office\n <ul><li>Result 1</li></ul>\n 📰 News\n <ul><li>Update 1</li></ul>\n 🎥 Must-Watch Movies\n <ul><li>Recommendation 1 with assumed reason (if needed)</li></ul>\n </html>\"\n}\n",
"options": {},
"promptType": "define",
"hasOutputParser": true
},
"typeVersion": 2.1
},
{
"id": "13a2e59f-09f9-45f4-8751-6ac14c2957b6",
"name": "週次公開作品を取得 (Tavily)",
"type": "n8n-nodes-base.httpRequestTool",
"position": [
512,
224
],
"parameters": {
"url": "https://api.tavily.com/search",
"method": "POST",
"options": {},
"jsonBody": "={\n \"query\": \"hollywood movies releasing this week\",\n \"search_depth\": \"basic\",\n \"time_range\": \"week\",\n \"max_results\": 5\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "{{$credentials.TavilyApiKey}}"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "59d02c90-23b9-4837-836a-e47357c043bf",
"name": "週次興行収入を取得 (Tavily)",
"type": "n8n-nodes-base.httpRequestTool",
"position": [
704,
224
],
"parameters": {
"url": "https://api.tavily.com/search",
"method": "POST",
"options": {},
"jsonBody": "={\n \"query\": \"hollywood box office results last week\",\n \"search_depth\": \"basic\",\n \"time_range\": \"week\",\n \"max_results\": 5\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "{{$credentials.TavilyApiKey}}"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "5bbbfe58-2e1f-47ab-a76c-86a98a2e82ee",
"name": "ハリウッドニュースを取得 (Tavily)",
"type": "n8n-nodes-base.httpRequestTool",
"position": [
896,
224
],
"parameters": {
"url": "https://api.tavily.com/search",
"method": "POST",
"options": {},
"jsonBody": "={\n \"query\": \"hollywood news latest casting director production\",\n \"search_depth\": \"basic\",\n \"time_range\": \"week\",\n \"max_results\": 5\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "{{$credentials.TavilyApiKey}}"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "f126d4d3-ff36-46bc-9fba-6a6035db4068",
"name": "必見映画を取得 (Tavily)",
"type": "n8n-nodes-base.httpRequestTool",
"position": [
1088,
224
],
"parameters": {
"url": "https://api.tavily.com/search",
"method": "POST",
"options": {},
"jsonBody": "={\n \"query\": \"best hollywood movies playing in theatres\",\n \"search_depth\": \"basic\",\n \"time_range\": \"week\",\n \"max_results\": 5\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "{{$credentials.TavilyApiKey}}"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "465e0a1c-648d-4960-b476-fd6502d9e5ed",
"name": "メール向け出力をフォーマット",
"type": "@n8n/n8n-nodes-langchain.outputParserStructured",
"position": [
1296,
224
],
"parameters": {
"jsonSchemaExample": "{\n \"subject\": \"Daily Hollywood Film Industry Briefing – July 25, 2025\",\n \"body\": \"<html> ... formatted content ... </html>\"\n}\n"
},
"typeVersion": 1.3
},
{
"id": "11dacc4f-424c-467b-91c3-8fb86f30ab12",
"name": "週次木曜日トリガー",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
144,
0
],
"parameters": {
"rule": {
"interval": [
{
"field": "weeks",
"triggerAtDay": [
4
],
"triggerAtHour": 7
}
]
}
},
"typeVersion": 1.2
},
{
"id": "52a88f90-5dcf-4a9e-ad46-2a499da4049c",
"name": "付箋",
"type": "n8n-nodes-base.stickyNote",
"position": [
-512,
-400
],
"parameters": {
"width": 576,
"height": 992,
"content": "## Try It Out! 🎬\n\n### This n8n template demonstrates how to build a **weekly Hollywood film industry briefing** using Tavily for real-time search and Google Gemini for summarization. It sends a concise, emoji‑styled email with **movie releases, box office results, industry news, and must‑watch recommendations**.\n\nUse cases: Perfect for **film journalists, entertainment blogs, or movie fans** who want an automated weekly update in their inbox.\n\n### How it works\n\n* **Trigger:** Scheduled every Thursday morning (configurable).\n* **Search:** Four Tavily API calls fetch:\n * Movies releasing this week\n * Last week’s box office results\n * Hollywood industry news\n * Must-watch movies currently in theatres\n* **Summarization:** Google Gemini processes the search results and formats them into Gmail‑friendly HTML with emojis and bullet points.\n* **Output:** Email sent automatically via Gmail node with subject and formatted briefing.\n\n### How to use\n\n* Configure **Tavily API** and **Gmail OAuth2** credentials in n8n.\n* (Optional) Edit search queries in Tavily nodes to focus on specific genres or regions.\n* Adjust the **schedule trigger** to your preferred day/time.\n\n### Requirements\n\n* Tavily API account (free tier available)\n* Google Gemini API key for summarization\n* Gmail account (OAuth2 credentials)\n\n### Need Help?\n\nDM me on [X (formerly Twitter)](https://x.com/manav170303) or email [titanfactz@gmail.com](mailto:titanfactz@gmail.com).\n\nAlways open to feedback and improvements!\n"
},
"typeVersion": 1
},
{
"id": "aba34eae-8a56-4093-86d4-e7aad9859bc0",
"name": "付箋1",
"type": "n8n-nodes-base.stickyNote",
"position": [
1760,
-400
],
"parameters": {
"color": 7,
"width": 752,
"height": 896,
"content": "## Example Email Output\n\n**Daily Hollywood Film Industry Briefing – 2025, 07:00 am**\nInbox\n\n[titanfactz@gmail.com](mailto:titanfactz@gmail.com)\n07:00am (0 minutes ago)\nto me\n\n## 🎬 **Releases**\n* Dora and the Search for Sol Dorado (July 2, 2025)\n* Jurassic World Rebirth (July 2, 2025)\n* The Old Guard 2 (July 2, 2025)\n* The Sound (June 27, 2025)\n\n## 📊 **Box Office**\n* Fantastic Four: First Steps – estimated \\$40M-\\$45M opening\n* Bad Guys 2 – estimated \\$22M opening\n* Naked Gun – estimated \\$16M opening\n* Together – estimated \\$10M+ over 5-day opening\n* Superman – \\$24.8 million last week (\\$289.5 million total)\n* Jurassic World: Rebirth – \\$13.0 million last week (\\$301.5 million total)\n* F1: The Movie – \\$6.2 million last week (\\$165.5 million total)\n\n## 📰 **News**\n* Michael Peña joins Chris Hemsworth and Lily James in Amazon’s new submarine action film, *Subversion*.\n* Casting director seeks 2,000 extras for a massive concert scene in the new TV series *9-1-1*.\n* *Emily in Paris* casting director Juliette Menager discusses finding Sylvie and Camille Razat’s exit.\n\n## 🎥 **Must-Watch Movies**\n* Caught by the Tides – Jia Zhangke’s latest experimental film blending memories and archives.\n* Sinners – Highly rated 9.5/10, a compelling cinematic experience.\n* Fantastic Four: The First Steps – A big Marvel win, rated 9/10 with stunning visuals.\n* MI: The Final Reckoning – Rated 8.5/10, audiences are buzzing about this action-packed finale.\n* Superman – Fan-favorite franchise, rated 8.5/10, delivering powerful storytelling.\n* Ballerina – Rated 8.5/10, expected to feature breathtaking choreography and action.\n* Thunderbolts – Rated 7.5/10, thrilling ensemble film with dynamic character arcs."
},
"typeVersion": 1
},
{
"id": "b93ba6e8-080c-48fd-8a19-517e2a985182",
"name": "Google Gemini 2.5 Flash",
"type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini",
"position": [
304,
224
],
"parameters": {
"options": {}
},
"credentials": {
"googlePalmApi": {
"id": "SuWwLWBsAfrDFgCm",
"name": "Google Gemini(PaLM) Api account"
}
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "dfc3ce2a-95ab-45e2-816b-f35f72fbba05",
"connections": {
"465e0a1c-648d-4960-b476-fd6502d9e5ed": {
"ai_outputParser": [
[
{
"node": "49971303-18e4-4c16-b007-061cc84dbf62",
"type": "ai_outputParser",
"index": 0
}
]
]
},
"b93ba6e8-080c-48fd-8a19-517e2a985182": {
"ai_languageModel": [
[
{
"node": "49971303-18e4-4c16-b007-061cc84dbf62",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"11dacc4f-424c-467b-91c3-8fb86f30ab12": {
"main": [
[
{
"node": "49971303-18e4-4c16-b007-061cc84dbf62",
"type": "main",
"index": 0
}
]
]
},
"5bbbfe58-2e1f-47ab-a76c-86a98a2e82ee": {
"ai_tool": [
[
{
"node": "49971303-18e4-4c16-b007-061cc84dbf62",
"type": "ai_tool",
"index": 0
}
]
]
},
"49971303-18e4-4c16-b007-061cc84dbf62": {
"main": [
[
{
"node": "33bd06d0-a733-47d0-88ea-d921780bc4a9",
"type": "main",
"index": 0
}
]
]
},
"13a2e59f-09f9-45f4-8751-6ac14c2957b6": {
"ai_tool": [
[
{
"node": "49971303-18e4-4c16-b007-061cc84dbf62",
"type": "ai_tool",
"index": 0
}
]
]
},
"f126d4d3-ff36-46bc-9fba-6a6035db4068": {
"ai_tool": [
[
{
"node": "49971303-18e4-4c16-b007-061cc84dbf62",
"type": "ai_tool",
"index": 0
}
]
]
},
"59d02c90-23b9-4837-836a-e47357c043bf": {
"ai_tool": [
[
{
"node": "49971303-18e4-4c16-b007-061cc84dbf62",
"type": "ai_tool",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - ソーシャルメディア, AI要約
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
10 メールマーケティングキャンペーンの成果を追跡
Bright Data と OpenAI を使ってメールマーケティング活動の分析とスマートフォローアップを自動化
If
Set
Gmail
+
If
Set
Gmail
17 ノードYaron Been
ソーシャルメディア
Jotform、Gemini AI、Google Sheets を使用した内部クレーム処理の自動化
Jotform、Gemini AI、Google Sheetsを使って、内部でのクレーム処理を自動化
If
Gmail
Google Sheets
+
If
Gmail
Google Sheets
22 ノードiamvaar
チケット管理
OpenAI、SerpAPI、LangChainを使ったニュース検索の自動化とTelegramブロードキャスト
OpenAI、SerpAPI、LangChainを使用したニュース検索の自動化とTelegramブロードキャス
If
Set
Wait
+
If
Set
Wait
23 ノードDevCode Journey
ソーシャルメディア
AI による Gmail 領収書の自動保存
AIによる Gメール領収書の自動保存機能:Google スプレッドシート・Google ドライブへ
Set
Gmail
Merge
+
Set
Gmail
Merge
14 ノードMatt Chong
請求書処理
AI駆動のフィードバックトリアージシステム:JotformからTrello、Airtable、Slackへ、Geminiを統合
AI駆動のフィードバックトリアージシステム:JotformからTrello、Airtable、Slackへ、Geminiを統合
If
Set
Gmail
+
If
Set
Gmail
21 ノードAtta
市場調査
Gmailへn8nによる送信タイムリミットの通知
AIベースのn8nリリースノート要約通知(Gmail経由でGPT-5-Miniを使用)
Set
Code
Html
+
Set
Code
Html
16 ノードJeff Huera
個人の生産性
ワークフロー情報
難易度
中級
ノード数11
カテゴリー2
ノードタイプ7
作成者
Manav Desai
@manavdesai17Exploring AI and automation with n8n. Here to share builds, learn from the community, and create useful workflows together.
外部リンク
n8n.ioで表示 →
このワークフローを共有