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
max_parallel_agentsinteger
gpu_accessboolean nullable
gpu_h100_x8boolean nullable
blind_testingboolean nullable
autonomous_runsboolean nullable
slack_integrationboolean nullable
overage_eligibleboolean nullable
byokboolean nullable
github_oauthboolean nullable
eap_accessboolean nullable
openai_compatibleboolean nullable
dev_diagnosticsboolean nullable

Example response

{
  "is_admin": true,
  "max_parallel_agents": 8
}

Changes