OXYGENOXYGEN
← All integrations
Fireflies logo

Fireflies

Read meeting transcripts and notes.

MeetingsAPI key26 endpoints

Endpoints

OperationMethod & pathEffectLatencyRateCost
FIREFLIES_ADD_TO_LIVE
The AddToLive Action allows you to add the Fireflies.ai bot to an ongoing meeting. Note: This action requires a paid Fireflies plan to add bots to meetings.
POST /composio/fireflies/fireflies_add_to_liveexternal_sendmanaged
FIREFLIES_CONTINUE_ASK_FRED_THREAD
Tool to continue an existing AskFred conversation thread with follow-up questions. This action CANNOT create new threads - it only works with existing thread IDs. Use when you need to maintain context from previous exchanges and ask additional questions about meeting data in the same conversation. To start a new thread, use FIREFLIES_CREATE_ASK_FRED_THREAD instead.
POST /composio/fireflies/fireflies_continue_ask_fred_threadexternal_sendmanaged
FIREFLIES_CREATE_ASK_FRED_THREAD
Tool to start a new AskFred conversation thread with a question about meetings. Use when you need to query meeting transcripts using natural language, either for a specific meeting or across multiple meetings with filters. Supports time-based queries and participant-focused queries.
POST /composio/fireflies/fireflies_create_ask_fred_threadexternal_sendmanaged
FIREFLIES_CREATE_BITE
Tool to create a bite (short video or audio clip) from a transcript segment. Use when you need to extract a specific portion of a meeting recording with defined start and end times.
POST /composio/fireflies/fireflies_create_biteexternal_sendmanaged
FIREFLIES_DELETE_TRANSCRIPT_BY_ID
Permanently delete a transcript from the Fireflies account by its unique ID. This is a destructive action that cannot be undone. The transcript, along with its associated audio/video files and summaries, will be permanently removed. Rate limited to 10 requests per minute across all user tiers. Verify the target transcript via FIREFLIES_GET_TRANSCRIPTS and obtain explicit user confirmation before calling this tool.
POST /composio/fireflies/fireflies_delete_transcript_by_idexternal_sendmanaged
FIREFLIES_FETCH_AI_APP_OUTPUTS2
Tool to fetch AI App outputs for specific apps or transcripts. Use when you need to retrieve AI-generated results from Fireflies AI Apps for meetings.
GET /composio/fireflies/fireflies_fetch_ai_app_outputs2nonemanaged
FIREFLIES_GET_ASK_FRED_THREAD
Tool to get a specific AskFred conversation thread with full history. Use when retrieving a particular AskFred thread along with all its messages and conversation details.
GET /composio/fireflies/fireflies_get_ask_fred_threadnonemanaged
FIREFLIES_GET_ASK_FRED_THREADS
Tool to retrieve a summary of all AskFred conversation threads for the current user. Use when you need to browse or list available AskFred conversations without fetching full message history.
GET /composio/fireflies/fireflies_get_ask_fred_threadsnonemanaged
FIREFLIES_GET_BITE_BY_ID
Fetches details for a specific bite by ID. Requires a Fireflies plan that supports Bites and appropriate API scope. If the bite is not found, use FIREFLIES_GET_TRANSCRIPT_BY_ID to retrieve full transcript context instead.
GET /composio/fireflies/fireflies_get_bite_by_idnonemanaged
FIREFLIES_GET_BITES
Fetches a list of bites (highlights) against input arguments. Bites are generated asynchronously after transcript completion — only call this after FIREFLIES_GET_TRANSCRIPT_BY_ID reports `status=completed`. Empty results are possible for valid meetings; use FIREFLIES_GET_TRANSCRIPT_BY_ID for full transcript context when bites are unavailable.
GET /composio/fireflies/fireflies_get_bitesnonemanaged
FIREFLIES_GET_MEETING_ANALYTICS
Retrieves comprehensive meeting analytics including team-level conversation metrics, sentiment analysis, and individual user performance data. Requires a Fireflies Business plan or higher to access analytics data. Use this action when you need to analyze meeting patterns, track engagement metrics, or generate reports on team collaboration effectiveness. Admin privileges are required to access team-level analytics.
GET /composio/fireflies/fireflies_get_meeting_analyticsnonemanaged
FIREFLIES_GET_MEETING_PARTICIPANTS
Retrieves the list of participants who attended a specific Fireflies meeting along with their attendance details. Returns participant emails, detailed attendee information (names, emails, phone numbers), join/leave timestamps, speaker identifications, and meeting metadata. Use this action when you need to know who attended a meeting, when they joined/left, or which speakers were identified in the transcript. Only works with completed transcripts - incomplete transcripts may return partial or missing participant data.
GET /composio/fireflies/fireflies_get_meeting_participantsnonemanaged
FIREFLIES_GET_MEETING_TOPICS
Retrieves AI-extracted topics, keywords, and meeting type for a specific Fireflies transcript. This action returns only topic-related metadata from the transcript summary, making it more efficient than fetching the entire transcript. Use this action when you need to understand what topics were discussed in a meeting without retrieving the full transcript content, sentences, or attendee details.
GET /composio/fireflies/fireflies_get_meeting_topicsnonemanaged
FIREFLIES_GET_TRANSCRIPT_BY_ID
Fetches details for a specific Fireflies transcript ID. Requires a paid Fireflies plan. Response is nested at data.outputs.data.transcript; fields like sentences and attendees can be null — handle gracefully. transcript.summary.action_items may be a single newline-delimited string rather than an array — split by line breaks instead of iterating as an array. Limit concurrent calls to ~3 and apply exponential backoff on 429 responses, respecting Retry-After headers.
GET /composio/fireflies/fireflies_get_transcript_by_idnonemanaged
FIREFLIES_GET_TRANSCRIPTS
Fetches a list of transcripts against input filters. Metadata filters (title, host_email, organizers, participants) match transcript metadata only, not spoken content. Pagination via skip/limit may trigger HTTP 429 on rapid requests; use backoff between pages.
GET /composio/fireflies/fireflies_get_transcriptsnonemanaged
FIREFLIES_GET_USER_BY_ID
The GetUser Action is designed to fetch details associated with a specific user id.
GET /composio/fireflies/fireflies_get_user_by_idnonemanaged
FIREFLIES_GET_USER_GROUPS
Tool to fetch a list of all user groups within the team with information about user groups including their members. Use when you need to retrieve team user groups, optionally filtering to only groups the current user belongs to with the mine parameter.
GET /composio/fireflies/fireflies_get_user_groupsnonemanaged
FIREFLIES_GET_USERS
Fetches a list of all users within the team, including their full email addresses. Use to resolve complete email addresses from user names before passing to tools that require exact email addresses (no partial addresses or domain-only values).
GET /composio/fireflies/fireflies_get_usersnonemanaged
FIREFLIES_GRAPHQL_QUERY
Execute an authenticated, read-only Fireflies GraphQL operation (query) and return the full raw GraphQL response (data+errors) for reliable fallback and debugging. Use when higher-level tools fail due to schema mismatches or to access raw error details.
POST /composio/fireflies/fireflies_graphql_queryexternal_sendmanaged
FIREFLIES_LIST_CHANNELS
Fetches a list of all channels accessible to the authenticated user, including both public channels and private channels where the user is a member. Use this action when you need to discover available channels, retrieve channel IDs for organizing meetings, or check channel membership before assigning meetings to a specific channel.
GET /composio/fireflies/fireflies_list_channelsnonemanaged
FIREFLIES_SEARCH_TRANSCRIPTS
Search transcripts using keyword-based full-text search across meeting titles and/or spoken content. Unlike GetTranscripts which only filters by metadata (title, participants, dates), this action performs semantic search within the actual transcript text using the 'keyword' parameter. Use this action when you need to find meetings where specific topics, phrases, or keywords were discussed during the conversation. Combine with 'scope' to control search boundaries (title-only, content-only, or both) and with standard filters (dates, participants) to narrow results.
GET /composio/fireflies/fireflies_search_transcriptsnonemanaged
FIREFLIES_SET_USER_ROLE
Tool to update a user's role within a team. Use when you need to grant or revoke admin privileges. Only team administrators can execute this action. Teams must maintain at least one admin member at all times.
POST /composio/fireflies/fireflies_set_user_roleexternal_sendmanaged
FIREFLIES_UPDATE_MEETING_CHANNEL
Tool to batch update channel assignments for 1-5 meeting transcripts. Use when you need to assign meetings to a specific channel. Requires meeting owner or team admin privileges. All-or-nothing semantics: if any transcript fails validation, none are updated.
POST /composio/fireflies/fireflies_update_meeting_channelexternal_sendmanaged
FIREFLIES_UPDATE_MEETING_PRIVACY
Tool to update the privacy setting of a meeting transcript. Use when you need to change meeting access permissions. Only meeting owners and team admins can update privacy settings.
POST /composio/fireflies/fireflies_update_meeting_privacyexternal_sendmanaged
FIREFLIES_UPDATE_MEETING_TITLE
Tool to update the title of a meeting transcript. Use when you need to rename a meeting. Requires admin privileges and the meeting owner must be in your team.
POST /composio/fireflies/fireflies_update_meeting_titleexternal_sendmanaged
FIREFLIES_UPLOAD_AUDIO
The UploadAudio Action allows you to upload audio files to Fireflies.ai for transcription. Transcription is asynchronous — after submission, results may take several minutes to become available; use transcript retrieval tools to poll for completion. Note: This action requires a paid Fireflies plan to upload and transcribe audio files.
POST /composio/fireflies/fireflies_upload_audioexternal_sendmanaged