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

# List Executions

> Lists executions owned by the caller (matched on api_key) unioned with executions of workflows shared with them, with optional filters. The output omits the inputs, outputs, and node_outputs payloads; fetch a single execution for full detail.



## OpenAPI

````yaml openapi/superflow.yaml GET /executions
openapi: 3.0.3
info:
  title: Lyzr SuperFlow API
  version: '1.0'
  description: >-
    SuperFlow orchestration API covering workflow CRUD, the execution lifecycle
    (run, pause, resume, terminate, rerun), scheduling, and human-in-the-loop
    approvals. Chat-completions and agent CRUD endpoints are documented
    separately and are not part of this surface.
servers:
  - url: https://inference.studio.lyzr.ai/api
security:
  - ApiKeyAuth: []
tags:
  - name: workflows
    description: Create, read, update, delete, and share workflow definitions.
  - name: workflow-execution
    description: Run workflows and control the execution lifecycle.
  - name: workflow-schedules
    description: Cron-driven recurring triggers for stored workflows.
  - name: approvals
    description: Human-in-the-loop approval requests raised by running workflows.
paths:
  /executions:
    get:
      tags:
        - workflow-execution
      summary: List executions
      description: >-
        Lists executions owned by the caller (matched on api_key) unioned with
        executions of workflows shared with them, with optional filters. The
        output omits the inputs, outputs, and node_outputs payloads; fetch a
        single execution for full detail.
      operationId: listExecutions
      parameters:
        - name: workflow_id
          in: query
          description: Filter by workflow ID
          schema:
            type: string
        - name: status
          in: query
          description: Filter by status (running, completed, failed, cancelled, paused)
          schema:
            type: string
        - name: limit
          in: query
          description: Page size (default 50, max 200)
          schema:
            type: integer
        - name: offset
          in: query
          description: Page offset (default 0)
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExecutionSummary'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Execution store not configured
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ExecutionSummary:
      type: object
      properties:
        execution_id:
          type: string
        workflow_id:
          type: string
        agent_id:
          type: string
        session_id:
          type: string
        status:
          type: string
          example: completed
        parent_execution_id:
          type: string
          description: Set when this execution was created by a rerun.
        rerun_from_node:
          type: string
        error:
          type: string
        started_at:
          type: string
        completed_at:
          type: string
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Tenant API key. Required on every endpoint.

````