Description
n8n-nodes-fireflies
This is an n8n community node. It lets you use Fireflies.ai in your n8n workflows.
Fireflies is an AI meeting assistant that automatically records, transcribes, and analyzes your meetings. It integrates with popular video conferencing platforms to help teams capture and search through important meeting content.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Usage
Credentials
Resources
Version history
Installation
Follow the installation guide in the n8n community nodes documentation.
Operations
The Fireflies node supports the following operations for interacting with the Fireflies.ai API:
- Get AI App Outputs
- Get Current User
- Get Transcript Analytics
- Get Transcript Summary
- Get Transcript
- Get Transcripts List
- Get Users
- Upload Audio
- Get Threads
- Get Thread
- Create Thread
- Continue Thread
- Delete Thread
organizer_emailparticipant_emailhost_emailtitleuser_idfromdate/todate- Get Transcript: Fetch the full transcript content.
- Get Transcript Summary: Retrieve summary and key takeaways.
- Get Transcript Analytics: Access analytics like sentiment, topic extraction, and more.
- n8n community nodes documentation
- Fireflies.ai API documentation
- ✨ New Resource: Added AskFred resource for AI-powered meeting Q&A
- 🆕 New Operations:
- 🔍 Meeting Filters: Create Thread supports filtering by date range, participants, organizers, channels, and transcript IDs
- 🌐 Response Options: Configurable response language and format mode (markdown/plaintext)
- ✨ New Operations: Added
GetTranscriptVideoUrlandGetTranscriptAudioUrloperations for direct media access - 🔧 Enhanced Error Handling: Comprehensive GraphQL error detection with detailed error codes and correlation IDs
- 🏗️ Architecture Improvements: Implemented generic error handling system for consistent error responses across all operations
- 📚 Code Quality: Refactored codebase for better maintainability and reduced duplication
- ⚠️ Breaking Changes: Removed
audiourlandvideourlfromGetTranscriptoperation due to GraphQL API’s partial data response behavior - Fixed nodeParameter handling for all operations
- Removed unsupported field from getAiAppOutput operation
- Fixes bug in handling input data
- Major refactor to separate code into resources and operations
- Bump version due to inconsistent build
- Refactored Fireflies Node implementation
- Replaced axios with http helper
- Added test for credentials
- Fixed bugs in array responses
- Added operations Get AI App Outputs, Get Meeting Analytics, Get Meeting Summary, Get Transcript, Get Transcripts List, Get Users, and Upload Audio
- Initial release of the Fireflies.ai node for n8n
Retrieve results generated by AI applications installed in your Fireflies workspace.
Fetch the profile details of the user associated with the provided API key.
Access AI-driven analytics such as sentiment, topics, and engagement data for a specific meeting transcript.
Retrieve a concise, AI-generated summary of a meeting, including bullet points, action items, and key highlights.
Get the full transcript of a specific meeting using its unique identifier.
Fetch a paginated list of available meeting transcripts. Supports advanced filtering by email, date, and user ID.
Retrieve a list of users within your Fireflies organization, including metadata like names and emails.
Upload audio recordings for transcription. This is useful for meetings, interviews, or any spoken content you want transcribed.
AskFred Operations
AskFred is Fireflies’ AI assistant that can answer questions about your meetings using natural language.
Retrieve a list of all AskFred conversation threads. Optionally filter by a specific transcript ID.
Get a specific AskFred thread with all its messages, including questions and AI-generated answers.
Start a new conversation with AskFred by asking a question. You can ask about a specific meeting or query across multiple meetings using filters (date range, participants, organizers, channels).
Continue an existing AskFred conversation with a follow-up question. The AI maintains context from previous messages in the thread.
Delete an AskFred thread and all its associated messages.
—
Usage
Fetching and Chaining Transcripts
The Get Transcripts List operation retrieves a list of available meeting transcripts based on optional filters such as:
This is often the first step in building a workflow, allowing you to dynamically retrieve and iterate over multiple transcript records.
Once you have the transcript IDs from this operation, you can pass them as inputs to the following operations:
These operations can be chained together to create rich workflows for reporting, insights, or downstream automation.
📘 For a full reference of transcript fields and response structure, see the Fireflies Transcript Schema.
Credentials
To use the Fireflies node, you need to authenticate with your Fireflies API key.
1. Log in to your Fireflies.ai account
2. Go to Settings > Developer Settings
3. Generate or copy your existing API key
4. Use this API key in your n8n credentials for the Fireflies node
The node uses API Key authentication to securely connect to the Fireflies.ai API.
Resources
Version history
2.1.0
– Get Threads: List all AskFred conversation threads
– Get Thread: Retrieve a specific thread with all messages
– Create Thread: Start a new conversation with AskFred
– Continue Thread: Add follow-up questions to existing threads
– Delete Thread: Remove threads and their messages