How to test the Fireflies API
Last updated: April 20, 2026
In this guide let us see the steps to test the Fireflies API.
How to test the Fireflies API
Navigate to the API page
Copy your API key with the authorization header
Open up the GraphQL endpoint & query builder: https://api.fireflies.ai/graphql

Click on HTTP Headers on the bottom and paste in your authorization header.
{ "Authorization": "Bearer YOUR-TOKEN-GOES-HERE"}Enter a query in the left section like the following example
{ user { email recent_transcript } }Hit the play button. You will see Fireflies API data on the right side
Here's a sample if you'd like to test it in Python
https://repl.it/@SamUdotong/fireflies-graphql-python (also available on Github)
Related: How to access Fireflies API