account

Get Account Features

Get feature eligibility flags for the authenticated account.

Authenticates via session token (JWT/cookie) or API key. The resolution lives in services.account_features because the hosted backend resolves the same flags in-process for its own ambient user; see that module.

The resolution's degraded marker is for callers that cache; a per-request response is replaced by the next call either way.

get/api/account/features

Response

Successful Response

is_adminboolean nullable
ollamaboolean nullable
gpu_accessboolean nullable
gpu_h100_x8boolean nullable
blind_testingboolean nullable
slack_integrationboolean nullable
overage_eligibleboolean nullable
byokboolean nullable
eap_accessboolean nullable
openai_compatibleboolean nullable
dev_diagnosticsboolean nullable

Example response

{
  "gpu_access": true,
  "is_admin": true
}

Changes