Lodol Docs

Fireflies.ai

API actions for the Fireflies.ai integration.

Fireflies.ai

Bring your Fireflies.ai meeting recordings and AI notes into your workflows.


Get meeting summary

Get the AI-generated notes for one meeting, including a written overview, the action items, the key topics, and an outline. Use the List meetings action first to find the meeting's ID.

Parameters

ParameterTypeRequiredDescription
meeting_idstringYesThe ID of the meeting to summarize. You can get this from the List meetings action.

Response

{
  "action_items": "Sarah: Follow up with the design team.\nJames: Schedule the next review.",
  "id": "01HXAMPLE0000000000000000",
  "keywords": [
    "Q1 goals",
    "release timeline",
    "design review"
  ],
  "outline": "Q1 goals\nProject timelines\nNext steps",
  "summary": "The team reviewed Q1 goals and confirmed project timelines for the next release.",
  "title": "Weekly Standup"
}

List meetings

List the meetings Fireflies.ai has recorded and transcribed, newest first. Optionally narrow the results to a date range. Use this to find a meeting's ID before getting its summary.

Parameters

ParameterTypeRequiredDescription
start_datestringNoOnly include meetings held on or after this date and time, for example 2026-07-15T09:00:00Z. Leave blank to include meetings from any start date.
end_datestringNoOnly include meetings held on or before this date and time, for example 2026-07-31T17:00:00Z. Leave blank to include meetings up to the present.
limitnumberNoThe most meetings to return, from 1 to 50. Leave blank to use the Fireflies default.

Response

{
  "meetings": [
    {
      "date": 1705312800000,
      "duration": 30,
      "id": "01HXAMPLE0000000000000000",
      "title": "Weekly Standup"
    }
  ]
}

On this page