> ## 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 Trello API credentials.

## Authentication Method

* **[`api_key`](/concepts/api-key)** - Trello API key + token

## API Key Setup

### Step 1: Get Your API Key

1. Log in to [Trello](https://trello.com)
2. Go to [trello.com/app-key](https://trello.com/app-key)
3. Copy your **API Key**

### Step 2: Generate a Token

1. On the same page, click the **Token** link
2. Authorize the app to access your Trello account
3. Copy the generated token

### Step 3: Store Credentials

The plugin uses a combined `key|token` format:

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

<Info>
  Trello requires both an API key and a user token. Depending on your setup, you may need to configure the `trelloApiKey` option separately in the plugin options.
</Info>

## Webhook Setup (Optional)

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

## Required Credentials Summary

| Credential     | Required For         | Where to Find                   |
| -------------- | -------------------- | ------------------------------- |
| API Key        | All API calls        | trello.com/app-key              |
| Token          | All API calls        | trello.com/app-key → Token link |
| Webhook Secret | Webhook verification | Set when creating the webhook   |

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