Fireflies icon

Fireflies

Interact with the Fireflies.ai API

Actions8

Overview

This node integrates with the Fireflies.ai API to perform various operations related to transcripts and other resources. Specifically, for the "Transcript" resource and the "Get Video URL" operation, it retrieves the video URL associated with a given transcript ID. This is useful when you want to programmatically access or share the video linked to a particular transcript generated by Fireflies.ai.

Practical examples include:

  • Automatically fetching the video URL after a meeting transcription is completed.
  • Embedding or linking the video in follow-up emails or reports.
  • Integrating video access into custom dashboards or applications.

Properties

Name Meaning
Transcript ID The unique identifier of the transcript for which to retrieve the associated video URL.

Output

The node outputs JSON data containing the result of the requested operation. For the "Get Video URL" operation on a transcript, the output JSON will typically include the video URL linked to the specified transcript ID.

If the operation succeeds, the output might look like this (example structure):

[
  {
    "videoUrl": "https://fireflies.ai/video/abc123"
  }
]

No binary data output is indicated for this operation.

Dependencies

  • Requires an active Fireflies.ai account.
  • Needs an API key credential configured in n8n to authenticate requests to the Fireflies.ai API.
  • Internet connectivity to reach the Fireflies.ai service endpoints.

Troubleshooting

  • Operation Not Supported Error: If you select an unsupported operation or resource combination, the node will throw an error indicating the operation is not supported. Ensure that the resource is set to "Transcript" and the operation to "Get Video URL".
  • Invalid Transcript ID: Providing an incorrect or non-existent transcript ID may cause the API to return an error or empty response. Verify the transcript ID before running the node.
  • Authentication Errors: Missing or invalid API credentials will prevent the node from accessing the Fireflies.ai API. Confirm that the API key credential is correctly set up in n8n.
  • Network Issues: Connectivity problems can cause timeouts or failures. Check your network connection and firewall settings.

Links and References

Discussion