API Reference
The QSC REST API lets you manage your search app programmatically. All endpoints share the same base URL and authentication scheme.
Base URL
https://qsc.quasiris.de
Authentication
Pass your API token via the X-QSC-Token header on every request:
X-QSC-Token: <your-token>
Two tokens are used depending on the operation:
| Token | Used for |
|---|---|
| Admin token | Schema updates (/api/v1/searchapp/*) |
| Feeding token | Data operations and scheduling (/api/v1/data/*, /api/v1/job/*) |
Tokens are managed under Security in the QSC Admin UI. See Authentication for details.
Quickstart with Postman
The fastest way to get started — import the collection and an environment, fill in your credentials, then run through the three numbered folders in order.
| Environment | Download |
|---|---|
| Production | qsc-prod.postman_environment.json |
| Development | qsc-dev.postman_environment.json |
In Postman: File → Import the collection and the environment file, then select the environment and fill in tenant, code, token, and feedingToken.
APIs
| API | Description |
|---|---|
| Search App Schema | Define the field schema of your search app |
| Feeding | Push documents into the index |
| Search | Execute searches, suggestions, and navigation |