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

# List Schedules



## OpenAPI

````yaml /openapi.json get /api/workspaces/{id}/schedules
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/workspaces/{id}/schedules:
    get:
      tags:
        - schedule
      summary: List Schedules
      operationId: list_schedules_api_workspaces__id__schedules_get
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            title: Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduleListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ScheduleListResponse:
      properties:
        schedules:
          items:
            $ref: '#/components/schemas/ScheduleResponse'
          type: array
          title: Schedules
      type: object
      required:
        - schedules
      title: ScheduleListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ScheduleResponse:
      properties:
        id:
          type: string
          title: Id
        workspace_id:
          type: string
          title: Workspace Id
        cron_expression:
          type: string
          title: Cron Expression
        enabled:
          type: boolean
          title: Enabled
        last_run_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Run At
        next_run_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Run At
        instructions:
          type: string
          title: Instructions
        last_run_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Run Status
        created_at:
          type: string
          title: Created At
        updated_at:
          type: string
          title: Updated At
        name:
          type: string
          title: Name
        status:
          type: string
          title: Status
      type: object
      required:
        - id
        - workspace_id
        - name
        - status
        - cron_expression
        - enabled
        - last_run_at
        - next_run_at
        - instructions
        - last_run_status
        - created_at
        - updated_at
      title: ScheduleResponse
    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
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````