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

# Get Credentials

> Step-by-step instructions for obtaining Fireflies API credentials.

## Authentication Method

* **[`api_key`](/concepts/api-key)** - Fireflies API key

## API Key Setup

### Step 1: Get Your API Key

1. Log in to [app.fireflies.ai](https://app.fireflies.ai)
2. Click on your avatar → **Integrations**
3. Go to the **API Access** section
4. Copy your **API Key**
5. Store it securely

**Storing Credentials:**

```bash theme={null}
pnpm corsair setup --plugin=fireflies api_key=your-api-key
```

## Webhook Setup (Optional)

1. In Fireflies, go to **Settings** → **Webhooks**
2. Add your endpoint URL
3. Copy the signing secret

```bash theme={null}
pnpm corsair setup --plugin=fireflies webhook_signature=your-webhook-secret
```

## Required Credentials Summary

| Credential     | Required For         | Where to Find                        |
| -------------- | -------------------- | ------------------------------------ |
| API Key        | All API calls        | Settings → Integrations → API Access |
| Webhook Secret | Webhook verification | Settings → Webhooks                  |

For general information about how Corsair handles authentication, see [Authentication](/concepts/auth).
