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

# List schedule runs

> The run history of one schedule, newest first.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/workflow-schedules/{id}/runs
openapi: 3.1.0
info:
  title: Sidenet API
  version: 1.0.0
  description: >-
    Sidenet HTTP endpoints exposed by the Sidenet Studio. All routes require an
    api key that can be generated through the studio in studio.sidenet.ai.
servers:
  - url: https://api.sidenet.ai
security:
  - bearerAuth: []
paths:
  /v1/workflow-schedules/{id}/runs:
    get:
      tags:
        - Workflows
      summary: List schedule runs
      description: The run history of one schedule, newest first.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            example: 5b1c2d3e-4f60-4a7b-8c9d-0e1f2a3b4c5d
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            maximum: 200
      responses:
        '200':
          description: The runs
          content:
            application/json:
              schema:
                type: object
                properties:
                  runs:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        workflow_id:
                          type: string
                          format: uuid
                        schedule_id:
                          type: string
                          format: uuid
                          nullable: true
                        trigger:
                          type: string
                          enum:
                            - schedule
                            - run_now
                            - manual
                            - test
                        status:
                          type: string
                          enum:
                            - running
                            - succeeded
                            - failed
                            - skipped
                        started_at:
                          type: string
                          format: date-time
                        finished_at:
                          type: string
                          format: date-time
                          nullable: true
                        text:
                          type: string
                          nullable: true
                          description: >-
                            The text posted to the thread: the workflow's
                            output_text rendered against this run, else a
                            completion notice with the output attached.
                        error:
                          type: string
                          nullable: true
                        thread_id:
                          type: string
                          nullable: true
                          description: >-
                            The conversation the result was posted to, when
                            notify=thread.
                        request_id:
                          type: string
                          nullable: true
                          description: Joins the run to its trace.
        '404':
          description: Not found
      security:
        - bearerAuth: []
        - sessionToken: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Organization API key, generated in studio.sidenet.ai. Backend only —
        never in a browser.
    sessionToken:
      type: http
      scheme: bearer
      description: >-
        Session token (`snat_…`) minted by POST /v1/token. Carries the
        organization and the end user; safe in a browser.

````