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

# Introduction

> Welcome to the QwixAI API documentation.

## Overview

The **QwixAI API** gives you full programmatic access to everything our platform offers.
We built QwixAI **API-first**, meaning every feature in our app is backed by the same API you're using here.

## Authentication

All endpoints require authentication via an **API key**, which you can generate on [qwix.chat](https://qwix.chat).

Pass it with every request using the `Authorization` header:

```bash theme={null}
curl --request GET \
  --url https://api.qwix.chat/api/v1/... \
  --header 'Authorization: Bearer <your-api-key>'
```

<Note>
  Every route also accepts your personal **JWT token** — since QwixAI runs on the same API internally. Only use this when building a custom UI on top of QwixAI, not for general integrations.
</Note>
