Skip to main content

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. Pass it with every request using the Authorization header:
curl --request GET \
  --url https://api.qwix.chat/api/v1/... \
  --header 'Authorization: Bearer <your-api-key>'
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.