Skip to main content

Turn meeting transcripts or audio into Google Docs action summaries with Groq Whisper, OpenRouter, and Google Docs

Workflow preview

Workflow preview
100%
Turn meeting transcripts or audio into Google Docs action summaries with Groq Whisper, OpenRouter, and Google Docs preview
Open on n8n.io

1. Workflow Overview

Meeting Transcript → AI Summary & Google Doc (Text + Audio) Turn raw meeting transcripts or audio recordings into structured, ready to share Google Docs — automatically. No manual note taking, no c...

Best for

  • Document Extraction automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.webhook, n8n-nodes-base.if, n8n-nodes-base.googledocs, n8n-nodes-base.respondtowebhook

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by SPCTEK AI.

Original n8n.io source

1.1 Workflow description

Title
Turn meeting transcripts or audio into Google Docs action summaries with Groq Whisper, OpenRouter, and Google Docs
Workflow name
Turn meeting transcripts or audio into Google Docs action summaries with Groq Whisper, OpenRouter, and Google Docs

Meeting Transcript → AI Summary & Google Doc (Text + Audio)

Turn raw meeting transcripts or audio recordings into structured, ready-to-share Google Docs — automatically. No manual note-taking, no copy-pasting.

What It Does

Send a meeting transcript (text or audio file) via a webhook and this workflow will:

  • Auto-detect whether you sent text or an audio file
  • Transcribe audio using Groq Whisper (free — 28,800 sec/day)
  • Use AI to extract a structured summary via OpenRouter
  • Create a formatted Google Doc with 4 clearly defined sections:
  • 📌 Executive Summary (2–3 sentences)
  • ✅ Key Decisions Made
  • 📋 Action Items (with Owner & Deadline)
  • 🗓️ Suggested Next Meeting Agenda
  • Return the Google Doc link instantly in the webhook response

Who Is This For

  • Teams and managers who want automatic meeting notes without extra tools
  • Anyone recording calls or meetings who needs structured follow-ups fast
  • Operations and project managers tracking decisions and action items

How It Works

  1. Trigger — Send a POST request to the webhook with either:
  • JSON body: transcript, meeting_title, meeting_date
  • Multipart form-data: audio file (.mp3, .mp4, .wav, .m4a)
  1. Route — An If node detects whether text or audio was sent
  2. Transcribe (audio path only) — Groq Whisper transcribes the audio
  3. Summarize — OpenRouter AI (GPT-4o-mini) structures content into JSON
  4. Format — A Code node builds the final document content
  5. Publish — A Google Doc is created and the summary is written into it
  6. Respond — Webhook returns the doc title, URL, and summary preview

Requirements

Service Purpose Cost
Groq Audio transcription (Whisper) Free (28,800 sec/day)
OpenRouter AI summarization Free models available
Google Docs OAuth2 Create & write documents Free

Setup Steps

  1. Groq Credential
  • Get a free API key at console.groq.com
  • In n8n → Settings → Credentials → New → Header Auth
  • Set Name: Authorization, Value: Bearer YOUR_GROQ_KEY
  • Select this credential in the Transcribe Audio node
  1. OpenRouter Credential
  • Get a free API key at openrouter.ai
  • In n8n → Settings → Credentials → New → Header Auth
  • Set Name: Authorization, Value: Bearer YOUR_OPENROUTER_KEY
  • Select this credential in the Call AI API node
  1. Google Docs
  • In n8n → Settings → Credentials → New → Google Docs OAuth2
  • Sign in and allow access
  • Select this credential in both Google Docs nodes
  1. Activate the workflow and copy the webhook URL from the trigger node

Example Request (Text)

POST to your webhook URL with:

{
 "transcript": "John: Let's move the launch to Q3...",
 "meeting_title": "Q2 Planning Sync",
 "meeting_date": "2025-05-05"
}

Example Request (Audio)

POST with multipart/form-data:

  • audio → your audio file (.mp3, .mp4, .wav, .m4a)
  • meeting_title → optional
  • meeting_date → optional

1.2 Logical Blocks

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.

2. Block-by-Block Analysis

Block 1 - Step 2 — Groq Whisper Info

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Step 3 — OpenRouter Info

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Step 4 — Google Docs Info

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Transcribe Audio

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 5 - Prepare Audio Input

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 6 - Call AI API

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 7 - Step 1 — Trigger Info1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 8 - Receive Meeting Transcript

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2

Block 9 - Text or Audio?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.3

Block 10 - Validate & Prepare Input

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 11 - Format Document Content

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 12 - Write Summary to Doc

Type / Role
n8n-nodes-base.googleDocs - googleDocs
Config choices
Version 2

Block 13 - Create Google Doc

Type / Role
n8n-nodes-base.googleDocs - googleDocs
Config choices
Version 2

Block 14 - Return Doc Link

Type / Role
n8n-nodes-base.respondToWebhook - respondToWebhook
Config choices
Version 1.1

Block 15 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Turn meeting transcripts or audio into Google Docs action summaries with Groq Whisper, OpenRouter, and Google Docs
Complexity advanced
Nodes 15
Categories Document Extraction, AI Summarization
Author SPCTEK AI
Published 05 May 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/15499/15499.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

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.

Frequently asked questions

What does Turn meeting transcripts or audio into Google Docs action summaries with Groq Whisper, OpenRouter, and Google Docs do?

Meeting Transcript → AI Summary & Google Doc (Text + Audio) Turn raw meeting transcripts or audio recordings into structured, ready to share Google Docs — automatically. No manual note taking, no c...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

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 Document Extraction, AI Summarization use case.