mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
16 lines
282 B
Text
16 lines
282 B
Text
|
|
---
|
||
|
|
title: "Get Agent Count"
|
||
|
|
description: "Get the total number of agents broken down by status"
|
||
|
|
openapi: "GET /api/v1/workflow/count"
|
||
|
|
---
|
||
|
|
|
||
|
|
Returns totals broken down by status — useful for dashboards or quota checks.
|
||
|
|
|
||
|
|
```json
|
||
|
|
{
|
||
|
|
"total": 5,
|
||
|
|
"active": 4,
|
||
|
|
"archived": 1
|
||
|
|
}
|
||
|
|
```
|