GET

Authentication

https://qcloud-server.qpiai.tech/api/auth

All 61 routes require a secret token passed exclusively in the X-Secret-Token HTTP request header. Tokens are issued from the QCloud frontend dashboard. The token must only appear in the header — never in the request body, query parameters, path parameters, or cookies.

Note:
  • Tokens are issued from the QCloud frontend dashboard.
  • If the token is missing or invalid, the API returns `401 Unauthorized`.
  • Never include the token in the request body or query parameters.
  • The token must be included in every request as an HTTP header.
HEADERS
X-Secret-Tokenyour-token-from-dashboard
curl
curl --location 'https://qcloud-server.qpiai.tech/api/circuits/create' \
--header 'Content-Type: application/json' \
--header 'X-Secret-Token: your-token-from-dashboard' \
--data-raw '{}'