> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Fireflies Transcript: Inputs, Cost & CLI Example

> Get a Fireflies transcript and recording. Includes inputs, outputs, pricing notes, Deepline CLI examples, and GTM automation guidance.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=fireflies_transcript:{"id":"{{id}}"}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name         | Type     | Required | Default | Description |
| ------------ | -------- | -------- | ------- | ----------- |
| `payload.id` | `string` | Yes      |         |             |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Read one transcript by ID, including sentences, summaries, analytics, transcript URL, audio URL, and video URL.",
    "properties": {
      "id": {
        "type": "string"
      }
    },
    "required": [
      "id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `result.meta` | `object` | No       |         | Additional response metadata (status, paging). |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "transcript": {
                "type": [
                  "object",
                  "null"
                ],
                "properties": {
                  "id": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "sentences": {
                    "type": [
                      "array",
                      "null"
                    ],
                    "items": {
                      "type": "object",
                      "properties": {
                        "index": {
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "speaker_name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "speaker_id": {
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "raw_text": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "start_time": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "end_time": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "ai_filters": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "text_cleanup": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "task": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "pricing": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "metric": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "question": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "date_and_time": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "sentiment": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "additionalProperties": false
                        },
                        "text": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "additionalProperties": false
                    }
                  },
                  "title": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "host_email": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "format": "email"
                  },
                  "organizer_email": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "format": "email"
                  },
                  "user": {
                    "type": [
                      "object",
                      "null"
                    ],
                    "properties": {
                      "user_id": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "email": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "format": "email"
                      },
                      "integrations": {
                        "type": [
                          "array",
                          "null"
                        ],
                        "items": {
                          "type": "string"
                        }
                      },
                      "user_groups": {
                        "type": [
                          "array",
                          "null"
                        ],
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            },
                            "handle": {
                              "type": "string"
                            },
                            "members": {
                              "type": [
                                "array",
                                "null"
                              ],
                              "items": {
                                "type": "object",
                                "properties": {
                                  "user_id": {
                                    "type": "string"
                                  },
                                  "first_name": {
                                    "type": "string"
                                  },
                                  "last_name": {
                                    "type": "string"
                                  },
                                  "email": {
                                    "type": "string",
                                    "format": "email"
                                  }
                                },
                                "required": [
                                  "user_id",
                                  "first_name",
                                  "last_name",
                                  "email"
                                ],
                                "additionalProperties": false
                              }
                            }
                          },
                          "required": [
                            "id",
                            "name",
                            "handle"
                          ],
                          "additionalProperties": false
                        }
                      },
                      "is_calendar_in_sync": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "name": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "num_transcripts": {
                        "type": [
                          "number",
                          "null"
                        ]
                      },
                      "recent_transcript": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "recent_meeting": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "minutes_consumed": {
                        "type": [
                          "number",
                          "null"
                        ]
                      },
                      "is_admin": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      }
                    },
                    "additionalProperties": false
                  },
                  "privacy": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "participants": {
                    "type": [
                      "array",
                      "null"
                    ],
                    "items": {
                      "type": "string"
                    }
                  },
                  "date": {
                    "type": [
                      "number",
                      "null"
                    ]
                  },
                  "duration": {
                    "type": [
                      "number",
                      "null"
                    ]
                  },
                  "summary": {
                    "type": [
                      "object",
                      "null"
                    ],
                    "properties": {
                      "keywords": {
                        "type": [
                          "array",
                          "null"
                        ],
                        "items": {
                          "type": "string"
                        }
                      },
                      "action_items": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "outline": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "shorthand_bullet": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "overview": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "bullet_gist": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "notes": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "gist": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "short_summary": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "short_overview": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "meeting_type": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "topics_discussed": {
                        "type": [
                          "array",
                          "null"
                        ],
                        "items": {
                          "type": "string"
                        }
                      },
                      "transcript_chapters": {
                        "type": [
                          "array",
                          "null"
                        ],
                        "items": {
                          "type": "string"
                        }
                      },
                      "extended_sections": {
                        "type": [
                          "array",
                          "null"
                        ],
                        "items": {
                          "type": "object",
                          "properties": {
                            "title": {
                              "type": "string"
                            },
                            "content": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "title",
                            "content"
                          ],
                          "additionalProperties": false
                        }
                      }
                    },
                    "additionalProperties": false
                  },
                  "meeting_info": {
                    "type": [
                      "object",
                      "null"
                    ],
                    "properties": {
                      "silent_meeting": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "summary_status": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "enum": [
                          "processing",
                          "processed",
                          "failed",
                          "skipped",
                          "default",
                          null
                        ]
                      },
                      "fred_joined": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      }
                    },
                    "additionalProperties": false
                  },
                  "is_live": {
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "transcript_url": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "format": "uri"
                  },
                  "audio_url": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "format": "uri"
                  },
                  "video_url": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "format": "uri"
                  },
                  "dateString": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "apps_preview": {
                    "type": [
                      "object",
                      "null"
                    ],
                    "properties": {
                      "outputs": {
                        "type": [
                          "array",
                          "null"
                        ],
                        "items": {
                          "type": "object",
                          "properties": {
                            "transcript_id": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "user_id": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "app_id": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "created_at": {
                              "type": [
                                "number",
                                "null"
                              ]
                            },
                            "title": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "prompt": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "response": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "additionalProperties": false
                        }
                      }
                    },
                    "additionalProperties": false
                  },
                  "meeting_attendees": {
                    "type": [
                      "array",
                      "null"
                    ],
                    "items": {
                      "type": "object",
                      "properties": {
                        "displayName": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "email": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "format": "email"
                        },
                        "phoneNumber": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "location": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "additionalProperties": false
                    }
                  },
                  "meeting_attendance": {
                    "type": [
                      "array",
                      "null"
                    ],
                    "items": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "join_time": {
                          "type": "string"
                        },
                        "leave_time": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "name",
                        "join_time"
                      ],
                      "additionalProperties": false
                    }
                  },
                  "speakers": {
                    "type": [
                      "array",
                      "null"
                    ],
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "additionalProperties": false
                    }
                  },
                  "calendar_id": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "cal_id": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "calendar_type": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "meeting_link": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "format": "uri"
                  },
                  "analytics": {
                    "type": [
                      "object",
                      "null"
                    ],
                    "properties": {
                      "sentiments": {
                        "type": [
                          "object",
                          "null"
                        ],
                        "properties": {
                          "negative_pct": {
                            "type": [
                              "number",
                              "null"
                            ]
                          },
                          "neutral_pct": {
                            "type": [
                              "number",
                              "null"
                            ]
                          },
                          "positive_pct": {
                            "type": [
                              "number",
                              "null"
                            ]
                          }
                        },
                        "additionalProperties": false
                      },
                      "categories": {
                        "type": [
                          "object",
                          "null"
                        ],
                        "properties": {
                          "questions": {
                            "type": [
                              "integer",
                              "null"
                            ]
                          },
                          "date_times": {
                            "type": [
                              "integer",
                              "null"
                            ]
                          },
                          "metrics": {
                            "type": [
                              "integer",
                              "null"
                            ]
                          },
                          "tasks": {
                            "type": [
                              "integer",
                              "null"
                            ]
                          }
                        },
                        "additionalProperties": false
                      },
                      "speakers": {
                        "type": [
                          "array",
                          "null"
                        ],
                        "items": {
                          "type": "object",
                          "properties": {
                            "speaker_id": {
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "name": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "duration": {
                              "type": [
                                "number",
                                "null"
                              ]
                            },
                            "word_count": {
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "longest_monologue": {
                              "type": [
                                "number",
                                "null"
                              ]
                            },
                            "monologues_count": {
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "filler_words": {
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "questions": {
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "duration_pct": {
                              "type": [
                                "number",
                                "null"
                              ]
                            },
                            "words_per_minute": {
                              "type": [
                                "number",
                                "null"
                              ]
                            }
                          },
                          "additionalProperties": false
                        }
                      }
                    },
                    "additionalProperties": false
                  },
                  "fireflies_users": {
                    "type": [
                      "array",
                      "null"
                    ],
                    "items": {
                      "type": "string"
                    }
                  },
                  "workspace_users": {
                    "type": [
                      "array",
                      "null"
                    ],
                    "items": {
                      "type": "string"
                    }
                  },
                  "channels": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "created_at": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "updated_at": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "created_by": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "is_private": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "title": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "members": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "user_id": {
                                "type": "string"
                              },
                              "email": {
                                "type": "string",
                                "format": "email"
                              },
                              "name": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "user_id",
                              "email",
                              "name"
                            ],
                            "additionalProperties": false
                          }
                        }
                      },
                      "required": [
                        "id",
                        "members"
                      ],
                      "additionalProperties": false
                    }
                  },
                  "shared_with": {
                    "type": [
                      "array",
                      "null"
                    ],
                    "items": {
                      "type": "object",
                      "properties": {
                        "email": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "format": "email"
                        },
                        "name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "photo_url": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "format": "uri"
                        },
                        "expires_at": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "additionalProperties": false
                    }
                  }
                },
                "required": [
                  "channels"
                ],
                "additionalProperties": false
              }
            },
            "required": [
              "transcript"
            ],
            "additionalProperties": false
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "message": {
                  "type": "string"
                },
                "extensions": {
                  "type": "object",
                  "additionalProperties": true
                }
              },
              "required": [
                "message"
              ],
              "additionalProperties": true
            }
          }
        },
        "required": [
          "data"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute fireflies_transcript --payload '{
  "id": "string"
}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.
* Billing mode: `no_bill`.
