GET

Authentication

https://server.qpiai-quantum.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.
Parameters:
ParamRequiredData TypeDescriptionExample
X-Secret-TokenYesstringSecret token from dashboardyour-secret-token
HEADERS
X-Secret-Tokenyour-token-from-dashboard
curl
curl --location 'https://server.qpiai-quantum.tech/api/circuits/create' \
--header 'Content-Type: application/json' \
--header 'X-Secret-Token: your-token-from-dashboard' \
--data-raw '{}'