Overview
GET /api/orgs/{org_id}/overview
Section titled “GET /api/orgs/{org_id}/overview”Get Overview
Aggregate dashboard overview for an org.
since scopes the work/cost stats and errored-chat count; inventory,
recent activity, and the paused-chat breakdown are current-state and
window-independent.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| org_id | path | string (uuid) | yes | |
| since | query | string | no | Stats window: 24h, 7d, 30d (default 30d) |
Responses
| Status | Description | Body |
|---|---|---|
| 200 | Successful Response | OverviewResponse |
| 422 | Validation Error | HTTPValidationError |
GET /api/orgs/{org_id}/overview/recent-chats
Section titled “GET /api/orgs/{org_id}/overview/recent-chats”List Recent Chats
Paginated recent chats, for infinite-scrolling sidebar lists.
Unlike recent_chats on the main overview payload (fixed, capped at 20,
attention chats surfaced first), this excludes attention-requiring chats
entirely — those are handled by the top-bar “Needs attention” dropdown —
and supports paging through the rest.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| org_id | path | string (uuid) | yes | |
| page | query | integer | no | |
| per_page | query | integer | no |
Responses
| Status | Description | Body |
|---|---|---|
| 200 | Successful Response | RecentChatsPageResponse |
| 422 | Validation Error | HTTPValidationError |