List All Workflows

Summary catalog

This endpoint returns an array of workflow summaries: identity, description, database and factory/component metadata when available. The generated description overstates the response: it does not include the complete steps, execution input schema or nested agents and teams. Fetch Get Workflow Details for a selected workflow.

Results depend on configured authorization and stored-component visibility. Registered code IDs take precedence. Stored component scanning is bounded and rows that cannot be reconstructed can be omitted, so this is not an unbounded database inventory.

GET/workflows

Retrieve a comprehensive list of all workflows configured in this OS instance.

Return Information:

  • Workflow metadata (ID, name, description)
  • Input schema requirements
  • Step sequence and execution flow
  • Associated agents and teams

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl --request GET 'https://example.com/workflows'
[  {    "id": "content-creation-workflow",    "name": "Content Creation Workflow",    "description": "Automated content creation from blog posts to social media",    "db_id": "123"  }]