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

# Get Schedule Details

> Get detailed information about a specific scheduled flow run

Retrieve detailed information about a specific scheduled flow run, including its configuration, status, and execution history.

## Examples

<AccordionGroup>
  <Accordion title="Get schedule details">
    ```bash theme={null}
    curl --request GET \
      --url https://api.edges.run/v1/flows/schedules/550e8400-e29b-41d4-a716-446655440000 \
      --header 'X-API-Key: <your-api-key>'
    ```
  </Accordion>
</AccordionGroup>

## Use Cases

* **Monitor Schedule Health**: Check when a schedule last ran and when it will run next
* **Verify Configuration**: Confirm the cron expression and timezone are correct
* **Check Status**: Ensure the schedule is active and not paused or cancelled
* **Audit Trail**: Track when schedules were created and last modified

<Info>
  If you need to pause, resume, or cancel this schedule, use the [Manage Schedule](/api/schedules/manage) endpoint.
</Info>


## OpenAPI

````yaml GET /flows/schedules/{scheduled_run_uid}
openapi: 3.1.0
info:
  title: ED Automation Flows API
  description: This is the Flows API documentation for ED Automation
  version: dev
servers:
  - url: https://api.edges.run/v1
security:
  - XApiKeyAuth: []
paths:
  /flows/schedules/{scheduled_run_uid}:
    get:
      tags:
        - flows / schedules
      summary: Get scheduled flow_run by UUID
      operationId: getSchedule
      parameters:
        - schema:
            type: string
            format: uuid
          in: path
          name: scheduled_run_uid
          required: true
          description: Scheduled flow_run UUID
      responses:
        '200':
          description: Returns the scheduled flow_run
          content:
            application/json:
              schema:
                description: Returns the scheduled flow_run
                type: object
                properties:
                  uid:
                    type: string
                    format: uuid
                    description: A unique identifier for the scheduled flow run.
                  flow_preset_uid:
                    type: string
                    format: uuid
                    description: >-
                      A unique identifier for the flow preset associated with
                      this scheduled execution.
                  flow_preset_name:
                    type: string
                    description: >-
                      The human-readable name of the flow preset executed by
                      this schedule.
                  user_uid:
                    type: string
                    format: uuid
                    description: >-
                      A unique identifier for the user associated with this
                      scheduled flow run.
                  workspace_uid:
                    type: string
                    format: uuid
                    description: >-
                      A unique identifier for the workspace associated with this
                      scheduled flow run.
                  status:
                    type: string
                    enum:
                      - ACTIVE
                      - CANCELLED
                      - PAUSED
                      - COMPLETED
                    nullable: true
                    description: The current status of the scheduled flow run.
                  postponed_until:
                    type: string
                    format: date-time
                    nullable: true
                    description: >-
                      If the flow run is postponed, this field indicates when it
                      will be retried.
                  cron:
                    type: string
                    description: >-
                      The cron expression (in POSIX format) defining the
                      schedule for the flow run.
                    nullable: true
                  timezone:
                    type: string
                    description: The IANA timezone for the scheduled flow run.
                    nullable: true
                  next_execution_at:
                    type: string
                    format: date-time
                    description: The date and time of the next scheduled execution.
                    nullable: true
                  last_executed_at:
                    type: string
                    format: date-time
                    description: The date and time when the flow run was last executed.
                    nullable: true
                  created_at:
                    type: string
                    format: date-time
                    description: The date and time when the scheduled flow run was created.
                    nullable: true
                  updated_at:
                    type: string
                    format: date-time
                    description: >-
                      The date and time when the scheduled flow run was last
                      updated.
                    nullable: true
                additionalProperties: false
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-0'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/def-0'
components:
  schemas:
    def-0:
      title: APIError
      description: >-
        Represents an error returned by the API. This schema defines the
        standard structure of error messages to ensure consistent error handling
        across the application.
      type: object
      properties:
        error_label:
          type: string
          nullable: true
        error_scope:
          type: string
          enum:
            - input
            - integ
            - param
            - config
          nullable: true
        error_ref:
          type: string
          nullable: true
          example: ERR-12345
        message:
          type: string
        status_code:
          type: integer
          nullable: true
        params:
          type: object
          additionalProperties:
            anyOf:
              - type: string
              - type: number
              - type: boolean
              - type: 'null'
              - type: array
                items:
                  type: string
          nullable: true
        data:
          type: object
          nullable: true
          additionalProperties: true
          description: Additional data about the error
      additionalProperties: false
  securitySchemes:
    XApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````