Dashboard

Workspace activity, agent runs, and credit usage at a glance

Health

Issues by status

Kanban

Agent runs by runtime

Hermes vs OpenCode

Files by type

Top skills

Loading…

Credit usage over time

Credits by model

Model rate card

From Model Management · per call
Model Model ID Credits

Runs by model (all-time)

Runtime Model Runs Credits

Usage by user

Workspace credit pool is shared
User Runs Used (30d) Used (total) Monthly cap
Loading…

Agent API

Programmatic access to dashboard data. Use these endpoints from agents, scripts, or other Multica modules. All endpoints accept a workspace query param (UUID or slug).

GET /api/agent/stats

Aggregate counts (issues, projects, skills, files, agents, tasks) and credit totals.

curl 'https://ss-dashboard.ocuss.app/api/agent/stats?workspace=<workspace_id>'
GET /api/agent/credits

Credit summary (today, 7d, 30d, total) and the active credit rate card.

curl 'https://ss-dashboard.ocuss.app/api/agent/credits?workspace=<workspace_id>'
GET /api/agent/openapi

Trimmed OpenAPI 3.0 schema for these agent endpoints.

curl 'https://ss-dashboard.ocuss.app/api/agent/openapi'

Module endpoints (workspace_id is required)

GET /api/dashboard/stats

Aggregate counts + credit totals

GET /api/dashboard/runs

Task runs split by runtime + status

GET /api/dashboard/models

Per-model runs + credits + tokens

GET /api/dashboard/credits

Summary + rate card

GET /api/dashboard/credits/timeline?days=N

Daily credit timeline (1-365)

GET /api/dashboard/files

File counts by family

GET /api/dashboard/issues

Kanban status + priority breakdown

GET /api/dashboard/skills

Skill count + top used

POST /api/dashboard/usage/ingest

Record a usage event. Body: {workspace_id, runtime, provider, model, task_id?, user_id?, agent_id?, input_tokens?, output_tokens?, credits?}