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

# Get Dashboard Execution Summary

> Use this endpoint to retrieve an aggregated summary of workflow executions. You can optionally filter by time range and status.



## OpenAPI

````yaml /en/openapi/v3-current/flowker.yaml get /v1/dashboards/executions
openapi: 3.1.0
info:
  description: >-
    Complete API reference for Flowker workflow orchestration services including
    catalog management, workflow definitions, executor configurations, provider
    configurations, and workflow executions.
  title: Flowker API
  version: 1.1.0
servers:
  - url: https://flowker.sandbox.lerian.net
security:
  - ApiKeyAuth: []
tags:
  - name: Health API
    description: Health and version endpoints for monitoring the Flowker service.
  - name: Catalog API
    description: >-
      Browse built-in providers, executors, and triggers available in the
      Flowker catalog.
  - name: Workflows API
    description: >-
      Create, update, activate, deactivate, clone, and delete workflow
      definitions.
  - name: Executions API
    description: Start workflow executions and track their status and results.
  - name: Executor Configurations API
    description: >-
      Configure, test, and manage external executor connections used by workflow
      nodes.
  - name: Provider Configurations API
    description: Configure, test, enable, and disable provider integrations.
  - name: Dashboard API
    description: >-
      Retrieve aggregated summaries of workflows and executions for operational
      dashboards.
  - name: Audit API
    description: Query and verify audit events for compliance and operational visibility.
  - name: Webhooks API
    description: >-
      Receive webhook callbacks from external systems to trigger workflow
      executions.
paths:
  /v1/dashboards/executions:
    get:
      tags:
        - Dashboard API
      summary: Get Dashboard Execution Summary
      description: >-
        Use this endpoint to retrieve an aggregated summary of workflow
        executions. You can optionally filter by time range and status.
      operationId: getDashboardExecutionSummary
      parameters:
        - description: Start of the time range filter (RFC 3339 format).
          in: query
          name: startTime
          schema:
            format: date-time
            type: string
        - description: End of the time range filter (RFC 3339 format).
          in: query
          name: endTime
          schema:
            format: date-time
            type: string
        - description: Filter results by execution status.
          in: query
          name: status
          schema:
            enum:
              - pending
              - running
              - completed
              - failed
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExecutionSummaryOutput'
          description: >-
            Indicates that the request was successful and the response contains
            the requested data.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: >-
            Indicates that the request was malformed or contained invalid
            parameters.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: >-
            Indicates an unexpected internal error. If this persists, please
            contact support.
components:
  schemas:
    ExecutionSummaryOutput:
      description: Aggregated summary of workflow executions.
      properties:
        total:
          description: Total number of executions matching the filters.
          example: 150
          type: integer
        completed:
          description: Number of completed executions.
          example: 120
          type: integer
        failed:
          description: Number of failed executions.
          example: 25
          type: integer
        pending:
          description: Number of pending executions.
          example: 3
          type: integer
        running:
          description: Number of currently running executions.
          example: 2
          type: integer
      type: object
    ErrorResponse:
      properties:
        code:
          description: Machine-readable error code with the FLK prefix.
          example: FLK-0001
          type: string
        message:
          description: Human-readable explanation of the error.
          example: Invalid input provided
          type: string
        title:
          description: Short error category title.
          example: Bad Request
          type: string
      required:
        - code
        - message
        - title
      type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        API key for authenticating requests to the Flowker API. Provisioned via
        the API_KEY environment variable during deployment.

````