Auto backup: 2026-02-19 12:11

This commit is contained in:
Krilly
2026-02-19 12:11:01 +00:00
parent ad3bcbcc45
commit b33a4d2390
178 changed files with 26760 additions and 48 deletions

View File

@@ -0,0 +1,103 @@
# Fireflies Routing Reference
**App name:** `fireflies`
**Base URL proxied:** `api.fireflies.ai`
## API Path Pattern
```
/fireflies/graphql
```
Fireflies uses GraphQL. All requests are POST to a single `/graphql` endpoint.
## GraphQL Queries
### User
```graphql
{ user { user_id name email is_admin } }
```
### Users
```graphql
{ users { user_id name email is_admin } }
```
### Transcripts
```graphql
{ transcripts { id title date duration host_email privacy } }
```
### Transcript by ID
```graphql
query($id: String!) {
transcript(id: $id) {
id title date duration
summary { overview action_items }
sentences { text speaker_name }
}
}
```
### Channels
```graphql
{ channels { id title created_at is_private } }
```
### Contacts
```graphql
{ contacts { email name picture last_meeting_date } }
```
### Bites
```graphql
{ bites { id name transcript_id summary status } }
```
### AskFred Threads
```graphql
{ askfred_threads { id title created_at } }
```
## GraphQL Mutations
### Upload Audio
```graphql
mutation($input: AudioUploadInput!) {
uploadAudio(input: $input) { success message }
}
```
### Delete Transcript
```graphql
mutation($id: String!) {
deleteTranscript(id: $id) { success }
}
```
### Update Meeting Title
```graphql
mutation($id: String!, $title: String!) {
updateMeetingTitle(id: $id, title: $title) { success }
}
```
### AskFred
```graphql
mutation($input: CreateAskFredThreadInput!) {
createAskFredThread(input: $input) { id title }
}
```
## Notes
- All requests are POST with Content-Type: application/json
- Request body: `{ "query": "...", "variables": {...} }`
- User IDs are ULIDs
- Rate limits: 50 calls/day (free), more on Business plan
- Summary field contains AI-generated content
## Resources
- [Fireflies API Documentation](https://docs.fireflies.ai/)
- [Fireflies GraphQL API](https://docs.fireflies.ai/graphql-api)