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

# List All Workflow Runs

> List workflow runs across all workflows. Filterable by status and workflow_uuid.



## OpenAPI

````yaml GET /v1/workflow-runs
openapi: 3.1.0
info:
  title: Calseta
  description: SOC data platform for security agent consumption
  version: dev
servers: []
security: []
paths:
  /v1/workflow-runs:
    get:
      tags:
        - workflow-runs
      summary: List All Workflow Runs
      description: >-
        List workflow runs across all workflows. Filterable by status and
        workflow_uuid.
      operationId: list_all_workflow_runs_v1_workflow_runs_get
      parameters:
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - name: workflow_uuid
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Workflow Uuid
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: Page number (1-indexed)
            default: 1
            title: Page
          description: Page number (1-indexed)
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            description: Items per page (max 500)
            default: 50
            title: Page Size
          description: Items per page (max 500)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponse_WorkflowRunResponse_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PaginatedResponse_WorkflowRunResponse_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/WorkflowRunResponse'
          type: array
          title: Data
        meta:
          $ref: '#/components/schemas/PaginationMeta'
      type: object
      required:
        - data
        - meta
      title: PaginatedResponse[WorkflowRunResponse]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WorkflowRunResponse:
      properties:
        uuid:
          type: string
          format: uuid
          title: Uuid
        workflow_id:
          type: integer
          title: Workflow Id
        trigger_type:
          type: string
          title: Trigger Type
        trigger_context:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Trigger Context
        code_version_executed:
          type: integer
          title: Code Version Executed
        status:
          type: string
          title: Status
        attempt_count:
          type: integer
          title: Attempt Count
        log_output:
          anyOf:
            - type: string
            - type: 'null'
          title: Log Output
        result:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Result
        duration_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Ms
        started_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Started At
        completed_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Completed At
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - uuid
        - workflow_id
        - trigger_type
        - trigger_context
        - code_version_executed
        - status
        - attempt_count
        - log_output
        - result
        - duration_ms
        - started_at
        - completed_at
        - created_at
        - updated_at
      title: WorkflowRunResponse
      description: Full workflow run audit record.
    PaginationMeta:
      properties:
        total:
          type: integer
          title: Total
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        total_pages:
          type: integer
          title: Total Pages
      type: object
      required:
        - total
        - page
        - page_size
        - total_pages
      title: PaginationMeta
    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

````