Skip to content
Select themeSelect language

`GET /api/runners/config` — read the runner-subsystem config (system-admin). Exposes `hub_mode_enabled` (the `SUPACLOUD_HUB_MODE` runtime switch) and `least_loaded_dispatch` (the RUNG 4 lever) so the fleet UI can render both.

GET
/api/runners/config
curl --request GET \
--url https://example.com/api/runners/config

Fleet config (hub-mode + least-loaded)

Media typeapplication/json

Read-only fleet-config status, surfaced so the runners UI can show how the fleet dispatches. Both are instance-global levers.

object
hub_mode_enabled
required

Whether SUPACLOUD_HUB_MODE is enabled on the server. Runners only receive dispatched work when this is true.

boolean
least_loaded_dispatch
required

ADR 0046 RUNG 4 — whether weighted least-loaded dispatch ordering is on (the persisted global dispatch_least_loaded switch; default off = RUNG-0 registry order).

boolean
owner_onboarding_enabled
required

ADR 0046 Phase 0 (decision #9) — whether org/workspace owners may onboard edge runners scoped to workspaces they own (the persisted global runner_onboarding_by_owner switch; default off = system-admin-only onboarding).

boolean
workspace_fairness_enabled
required

ADR 0046 RUNG 4c — whether per-workspace fairness admission control is on (the persisted global workspace_fairness switch; default off = no admission control, byte-identical claim). When on, a single workspace cannot monopolise a shared runner pool — over-share work waits queue-pending at claim time (the runner skips claiming it) instead of being run.

boolean
Examplegenerated
{
"hub_mode_enabled": true,
"least_loaded_dispatch": true,
"owner_onboarding_enabled": true,
"workspace_fairness_enabled": true
}

Authentication required

Media typeapplication/json

The canonical JSON body of every error response — the single source of truth the frontend binds to. Every AppError serializes as this exact shape, and the generated OpenAPI component ApiErrorBody (with its ErrorCode enum) is what the frontend error schema is generated from, so there is no hand-written error schema on either end.

object
code
required

Machine-readable, stable error code.

string
Allowed values: not_found unauthorized forbidden bad_request unprocessable precondition_failed conflict method_not_allowed rate_limited quota_exceeded database_error docker_error vault_error internal_error
details
One of:
null
error
required

Human-readable message (the server’s English text; the client may localize by code).

string
Example
{
"code": "not_found"
}

Permission denied

Media typeapplication/json

The canonical JSON body of every error response — the single source of truth the frontend binds to. Every AppError serializes as this exact shape, and the generated OpenAPI component ApiErrorBody (with its ErrorCode enum) is what the frontend error schema is generated from, so there is no hand-written error schema on either end.

object
code
required

Machine-readable, stable error code.

string
Allowed values: not_found unauthorized forbidden bad_request unprocessable precondition_failed conflict method_not_allowed rate_limited quota_exceeded database_error docker_error vault_error internal_error
details
One of:
null
error
required

Human-readable message (the server’s English text; the client may localize by code).

string
Example
{
"code": "not_found"
}

Structured server error

Media typeapplication/json

The canonical JSON body of every error response — the single source of truth the frontend binds to. Every AppError serializes as this exact shape, and the generated OpenAPI component ApiErrorBody (with its ErrorCode enum) is what the frontend error schema is generated from, so there is no hand-written error schema on either end.

object
code
required

Machine-readable, stable error code.

string
Allowed values: not_found unauthorized forbidden bad_request unprocessable precondition_failed conflict method_not_allowed rate_limited quota_exceeded database_error docker_error vault_error internal_error
details
One of:
null
error
required

Human-readable message (the server’s English text; the client may localize by code).

string
Example
{
"code": "not_found"
}