curl -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer your_api_key" \
	--data '{ "query": "query Bite($biteId: ID!) { bite(id: $biteId) { user_id name status summary } }", "variables": { "biteId": "your_bite_id" } }' \
	https://api.fireflies.ai/graphql
{
  "data": {
    "bite": {
      "user_id": "user-id",
      "id": "bite-id",
    }
  }
}

Overview

The bite query is designed to fetch details associated with a specific bite ID.

Arguments

id
ID
required

Unique identifier of the bite

Schema

Fields available to the Bite query

Usage Example

query Bite($biteId: ID!) {
  bite(id: $biteId) {
    transcript_id
    name
    id
    thumbnail
    preview
    status
    summary
    user_id
    start_time
    end_time
    summary_status
    media_type
    created_at
    created_from {
      description
      duration
      id
      name
      type
    }
    captions {
      end_time
      index
      speaker_id
      speaker_name
      start_time
      text
    }
    sources {
      src
      type
    }
    privacies
    user {
      first_name
      last_name
      picture
      name
      id
    }
  }
}

Additional Resources