Build on Quelixa
Developers
Build on the platform — a REST API, token authentication, webhooks and a clean data model that mirrors the apps.
Everything you can do in the Quelixa interface, you can do over the API. Integrate another system, automate a workflow, or build a custom app on top of your workspace's data.
Start here#
Create an API token and make your first authenticated call.
Read and write records — the endpoints, verbs and conventions.
How records, relations and the shared database fit together.
Subscribe to events and react in real time.
Conventions#
The API is REST over HTTPS. Requests and responses are JSON. Every workspace has its own base URL — https://your-name.quelixa.com/api/v1 — and your token scopes access to that workspace only.
| Convention | Detail |
| --- | --- |
| Base URL | https://{workspace}.quelixa.com/api/v1 |
| Format | JSON request and response bodies |
| Auth | Bearer token in the Authorization header |
| Versioning | Path-versioned (/v1); breaking changes ship under a new version |
An API token can read and write your business data. Store tokens in a secret manager, never in client-side code or version control, and rotate them if exposed.