> ## 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 Recent Schedule Executions

> Returns audit rows for schedule-triggered and manually triggered workflow runs, scoped to the caller's api_key.



## OpenAPI

````yaml openapi/superflow.yaml GET /workflow-schedules/executions/recent
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:
  /workflow-schedules/executions/recent:
    get:
      tags:
        - workflow-schedules
      summary: List recent schedule executions
      description: >-
        Returns audit rows for schedule-triggered and manually triggered
        workflow runs, scoped to the caller's api_key.
      operationId: listRecentScheduleExecutions
      parameters:
        - name: page
          in: query
          description: Page number (default 1)
          schema:
            type: integer
        - name: limit
          in: query
          description: Page size (default 50)
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduleExecutionsListResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ScheduleExecutionsListResponse:
      type: object
      properties:
        executions:
          type: array
          items:
            $ref: '#/components/schemas/ScheduleExecution'
        total:
          type: integer
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
    ScheduleExecution:
      type: object
      properties:
        id:
          type: string
        schedule_id:
          type: string
        workflow_id:
          type: string
        execution_id:
          type: string
        task_id:
          type: string
        task_status:
          type: string
        attempt:
          type: integer
        max_attempts:
          type: integer
        success:
          type: boolean
        error_message:
          type: string
        executed_at:
          type: string
        completed_at:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Tenant API key. Required on every endpoint.

````