Block 1 - Transcribe with OpenAI
- Type / Role
- n8n-nodes-base.httpRequest - httpRequest
- Config choices
- Version 4.2
This workflow is provided as-is. Please review and test before using in production.
Description This template provides a simple and powerful backend for adding speech to text capabilities to any application. It creates a dedicated webhook that receives an audio file, transcribes i...
n8n-nodes-base.httprequest, n8n-nodes-base.set, n8n-nodes-base.webhook, n8n-nodes-base.respondtowebhook, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Guillaume Duvernay.
Original n8n.io sourceThis template provides a simple and powerful backend for adding speech-to-text capabilities to any application. It creates a dedicated webhook that receives an audio file, transcribes it using OpenAI's gpt-4o-mini model, and returns the clean text.
To help you get started immediately, you'll find a complete, ready-to-use HTML code example right inside the workflow in a sticky note. This code creates a functional recording interface you can use for testing or as a foundation for your own design.
This solution works by defining a clear API contract between your application (the client) and the n8n workflow (the backend).
The client-side technique:
POST request to the n8n webhook URL, sending the audio file as multipart/form-data.Transcript key. You can see this exact pattern in action in the example code provided in the workflow's sticky note.The n8n workflow (backend):
POST request and grabs the audio file.{"Transcript": "your text here..."}) back to your application.const WEBHOOK_URL = 'YOUR WEBHOOK URL'; and replace the placeholder with the Production Webhook URL from n8n.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 | Create a speech-to-text API with OpenAI GPT4o-mini transcribe |
|---|---|
| Complexity | intermediate |
| Nodes | 10 |
| Categories | Document Extraction, Multimodal AI |
| Author | Guillaume Duvernay |
| Published | 12 Jul 2025 |
Use the JSON export at /data/workflows/5925/5925.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.
Description This template provides a simple and powerful backend for adding speech to text capabilities to any application. It creates a dedicated webhook that receives an audio file, transcribes i...
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 Document Extraction, Multimodal AI use case.