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

# API Keys

> Manage tenant-level API keys for server-side integrations

API keys are used to authenticate your server's requests to the Brached API. Keep these keys secure and never expose them in client-side code.

## Managing API Keys

<Snippet file="openapi/tenant-svc.yaml" path="/dashboard/v1/tenants/{tenantId}/sdk/keys" method="post" />

<Snippet file="openapi/tenant-svc.yaml" path="/dashboard/v1/tenants/{tenantId}/sdk/keys" method="get" />

<Snippet file="openapi/tenant-svc.yaml" path="/dashboard/v1/tenants/{tenantId}/sdk/keys/{keyId}" method="delete" />

## Usage

Include your API key in the `X-API-Key` header for all requests.

```bash theme={null}
curl -H "X-API-Key: YOUR_API_KEY" https://api.brached.com/api/v1/...
```
