Hey!
I’d like to end the workflow if the Fireflies meeting is under 5 minutes. But I can’t find a time value in the input, and no setting in Fireflies to pass the duration. Any idea how to solve this?
Thanks a lot in advance!
If there’s no other way, you can get the sentences from the transcript. Each sentence should have a start time and an end time.
The total duration should be approximately the last sentence’s end-time
minus the first sentence’s start-time
.
Hey, great idea – thanks a lot!
When transcribing with Fireflies, I get sentence blocks, but how can I add timestamps to calculate the total duration?
Do you have a tip for that?
@Franz Just wanted to quickly check in Do you have one last tip for me? Would really appreciate it!
Just to clarify, I don’t use the Fireflies API directly myself — I’m just referencing their documentation.
To retrieve the start_time
and end_time
of sentences from a transcript using the Fireflies.ai GraphQL API, you can use the transcript query. This query allows you to fetch detailed information about a specific transcript, including its sentences and their respective timestamps. 
query Transcript($transcriptId: String!) {
transcript(id: $transcriptId) {
sentences {
index
text
start_time
end_time
speaker_name
}
}
}
Thank you, it worked.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.