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

# API Keys

> Create and manage API keys for programmatic access to your Qwairy data.

API keys allow you to access Qwairy data programmatically through the REST API. Use them to build custom dashboards, automate reports, or integrate Qwairy data into your existing tools.

Navigate to **Team Management > API** ("API Access", [https://www.qwairy.co/dashboard/team/api](https://www.qwairy.co/dashboard/team/api)) to manage them.

<Info>
  The REST API and API keys are available on **Growth** plans and above.
</Info>

## Creating an API Key

Click **Create API Key**, give it a descriptive name, and confirm. The key is displayed once — copy it immediately and store it securely.

<Warning>
  API keys are shown only once at creation. If you lose a key, delete it and create a new one.
</Warning>

## API Keys Table

| Column      | Description                      |
| ----------- | -------------------------------- |
| **Name**    | Key label                        |
| **Key**     | Masked key value (click to copy) |
| **Created** | Creation date                    |
| **Actions** | Delete button                    |

## Deleting a Key

Click the delete icon and confirm. Any integrations using this key will immediately stop working.

## Using API Keys

Include your API key in the `Authorization` header of API requests:

```bash theme={null}
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://www.qwairy.co/api/v1/brands
```

See the [API Reference](/developers/introduction) for full endpoint documentation.
