Get Agent Count
Get the total number of agents broken down by status
Get the total number of agents broken down by status
Returns totals broken down by status — useful for dashboards or quota checks.
theme={null}
{
"total": 5,
"active": 4,
"archived": 1
}OpenAPI#
GET /api/v1/workflow/count
openapi: 3.1.0
info:
title: Paladin API
description: API for the Paladin app
version: 1.0.0
servers:
- url: https://app.paladin.northmanngrp.com
description: Production
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