Get transcripts
Fireflies Get Transcripts is an advanced AI tool designed to efficiently query and extract summarized insights from multiple meeting transcripts using various filters such as date, keywords, and participant emails. It streamlines meeting data retrieval without needing individual transcript IDs, optimizing collaboration and information management.
Features
- Search across multiple meeting transcripts using keyword filters for precise content discovery.
- Apply flexible date range filters to locate meetings within specific time frames.
- Filter meetings by organizers or participants using email addresses for targeted search.
- Choose response formats including toon (token-efficient), JSON, or text for varied use cases.
- Paginate results with limit and skip options to manage large datasets effectively.
Benefits
- Save time by quickly finding relevant meetings without reviewing entire transcripts.
- Enhance productivity through easy access to summarized meeting insights.
- Improve collaboration by filtering meetings involving specific team members or topics.
- Optimize data handling with customizable response formats to suit different applications.
- Simplify information retrieval with user-friendly filtering options and pagination controls.
Description
Queries multiple meeting transcripts using filter properties (date, keyword, email, etc.). Returns basic metadata and transcript summary. Does NOT accept transcriptId as input - use fireflies_get_transcript() multiple times to get detailed transcript content.
Parameters
11 parameters
| Name | Type | Description |
|---|---|---|
| keyword | string | Optional keyword to search for in meeting content |
| scope | enum | Optional scope for keyword search: "title" (meeting titles only), "sentences" (transcript content), or "all" (both) |
| fromDate | string | Optional ISO 8601 date string (e.g., "2023-01-01") to filter meetings from this date |
| toDate | string | Optional ISO 8601 date string (e.g., "2023-12-31") to filter meetings until this date |
| date | number | Optional date filter (deprecated) |
| limit | number | Optional limit for the number of meetings to return (max 50) |
| skip | number | Optional number of meetings to skip for pagination |
| organizers | string[] | Optional array of organizer email addresses to filter meetings |
| participants | string[] | Optional array of participant email addresses to filter meetings |
| mine | boolean | Optional filter to only include meetings owned by the authenticated user |
| format | enum | Optional response format: "toon" (default, token-efficient), "json" (standard JSON), or "text" (human-readable) |