> ## Documentation Index
> Fetch the complete documentation index at: https://docs.asisso.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Agent Count

> Get the total number of agents broken down by status

Returns totals broken down by status — useful for dashboards or quota checks.

```json theme={null}
{
  "total": 5,
  "active": 4,
  "archived": 1
}
```


## OpenAPI

````yaml GET /api/v1/workflow/count
openapi: 3.1.0
info:
  title: Asisso API
  description: API for the Asisso app
  version: 1.0.0
servers:
  - url: https://app.asisso.com
    description: Production
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /api/v1/workflow/count:
    get:
      tags:
        - main
      summary: Get Workflow Count
      description: |-
        Get workflow counts for the authenticated user's organization.

        This is a lightweight endpoint for checking if the user has workflows,
        useful for redirect logic without fetching full workflow data.
      operationId: get_workflow_count_api_v1_workflow_count_get
      parameters:
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - name: X-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowCountResponse'
        '404':
          description: Not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WorkflowCountResponse:
      properties:
        total:
          type: integer
          title: Total
        active:
          type: integer
          title: Active
        archived:
          type: integer
          title: Archived
      type: object
      required:
        - total
        - active
        - archived
      title: WorkflowCountResponse
      description: Response for workflow count endpoint.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````