Fireflies.ai helps your team transcribe, summarize, search, and analyze voice conversations.
Go to siteThe Fireflies API allows you to harness the power of AI to record, transcribe, and search across your voice conversations. With Pipedream, you can create automated workflows that leverage these capabilities to streamline communication, enhance collaboration, and ensure important insights from meetings are captured and actionable. By integrating with other apps, you can trigger actions, sync data, and build an array of powerful automations around your Fireflies data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fireflies: {
type: "app",
app: "fireflies",
}
},
async run({steps, $}) {
const data = {
"query": `{ user { user_id email } }`,
}
return await axios($, {
method: "POST",
url: `https://api.fireflies.ai/graphql`,
headers: {
Authorization: `Bearer ${this.fireflies.$auth.api_key}`,
},
data,
})
},
})
Transcription Alerts to Slack: Use the Fireflies API on Pipedream to monitor for new meeting transcriptions. When a new transcription is available, trigger a workflow that sends a customized alert with key details and a transcription link to a designated Slack channel. This keeps your team informed and ensures prompt attention to important meeting outcomes.
Meeting Insights into CRM: After a sales call is transcribed by Fireflies, trigger a Pipedream workflow that parses the transcription for actionable items, decisions, or follow-ups and logs this information into your CRM, like Salesforce. Automate the creation of tasks or opportunities based on the context of the conversation, improving sales tracking and accountability.
Voice Command Issue Tracking: Combine Fireflies with a voice interface like Google Assistant. After dictating a quick meeting note or a task through your voice assistant, have the recording sent to Fireflies for transcription. The Pipedream workflow can then interpret the text, create an issue in a tool like GitHub or JIRA, and assign it to the relevant team member, streamlining task creation and project management.
Locates a specific user meeting by its unique ID. See the documentation
Retrieves the most recent meeting for a user. See the documentation
Creates and stores a new meeting in Fireflies, allowing it to be transcribed and shared. See the documentation
Fireflies uses API keys for authentication. When you connect your Fireflies account, Pipedream securely stores the keys so you can easily authenticate to Fireflies APIs in both code and no-code steps.