`GET /api/projects/board` — one server-paginated, tab/provider/autodev-filtered page of the projects board plus the total + the summary/provider facets.
const url = 'https://example.com/api/projects/board';const options = {method: 'GET', headers: {cookie: 'supacloud_session=<supacloud_session>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/projects/board \ --cookie supacloud_session=<supacloud_session>Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Active NavTab: all / active / autodev / archived (default all).
Auto-Dev select: on / off (else unset).
Last-run-status facet chip: keep only projects whose latest task has this status.
#691 §E — free-text search over the project name + git repo URL.
#691 §E — whitelisted sort key: name | created_at | repo | status | runs | last_run_at | provider | features.
Sort direction asc | desc (default desc).
Recompute the summary/provider facets (default true). The board sends
false for a tab/page change (the facets depend only on the workspace).
Responses
Section titled “Responses”One page of the projects board: rows + total + optional facets
GET /api/projects/board body — one page of project overviews + total + facets.
object
Workspace-wide facets the board needs that a single page can’t derive: the summary total (all projects, incl. archived), the not-archived auto-developing count, and the distinct git providers for the provider filter.
object
Project counts by their latest task’s status (the last-run-status facet).
One filter-chip value and its count. Counts are workspace-wide (independent of the active filter — the chip totals do not shift as the user filters).
object
How many rows fall in this bucket.
The bucket value (e.g. a scope, a role, a framework).
Wire shape for one Projects board row. Mirrors ProjectOverviewRow but with
the two counts narrowed to i64 JSON numbers and no DB-only concerns. The
nullable fields are marked required so the wire shape always carries the
key (the FE reads them as required-but-nullable).
object
#358 — true when the project is archived (hidden from the active board).
Examplegenerated
{ "facets": { "autodev_count": 1, "by_status": [ { "count": 1, "value": "example" } ], "providers": [ "example" ], "total": 1 }, "items": [ { "active_runs": 1, "archived": true, "backlog_mode_enabled": true, "created_at": "2026-04-15T12:00:00Z", "git_default_branch": "example", "git_provider": "example", "git_repo_url": "example", "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "image_error": "example", "image_status": "example", "issue_tracker": "example", "issue_tracker_key": "example", "last_run_at": "2026-04-15T12:00:00Z", "last_run_error": "example", "last_run_status": "example", "max_concurrent_runs": 1, "name": "example", "task_count": 1 } ], "total": 1}Authentication required
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
Machine-readable, stable error code.
Present only on a quota-exceeded 403 — the inline upgrade-CTA payload.
object
The entitlement feature key that was hit, e.g. apps.max_count.
The plan’s limit for this key.
Where to send the user to upgrade.
Current usage (count or bytes, per the key).
Human-readable message (the server’s English text; the client may localize
by code).
Example
{ "code": "not_found"}Permission denied
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
Machine-readable, stable error code.
Present only on a quota-exceeded 403 — the inline upgrade-CTA payload.
object
The entitlement feature key that was hit, e.g. apps.max_count.
The plan’s limit for this key.
Where to send the user to upgrade.
Current usage (count or bytes, per the key).
Human-readable message (the server’s English text; the client may localize
by code).
Example
{ "code": "not_found"}Structured server error
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
Machine-readable, stable error code.
Present only on a quota-exceeded 403 — the inline upgrade-CTA payload.
object
The entitlement feature key that was hit, e.g. apps.max_count.
The plan’s limit for this key.
Where to send the user to upgrade.
Current usage (count or bytes, per the key).
Human-readable message (the server’s English text; the client may localize
by code).
Example
{ "code": "not_found"}