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

# List schedules for an agent



## OpenAPI

````yaml /api-reference/openapi.json get /v1/agents/{workflow_permanent_id}/schedules
openapi: 3.1.0
info:
  title: Skyvern API
  description: API for Skyvern
  version: 1.0.0
servers:
  - url: https://api.skyvern.com
    x-fern-server-name: Cloud
  - url: https://api-staging.skyvern.com
    x-fern-server-name: Staging
  - url: http://localhost:8000
    x-fern-server-name: Local
security: []
paths:
  /v1/agents/{workflow_permanent_id}/schedules:
    get:
      tags:
        - Schedules
      summary: List schedules for an agent
      operationId: schedules_list
      parameters:
        - name: workflow_permanent_id
          in: path
          required: true
          schema:
            type: string
            title: Workflow Permanent Id
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Skyvern API key for authentication. API key can be found at
              https://app.skyvern.com/settings.
            title: X-Api-Key
          description: >-
            Skyvern API key for authentication. API key can be found at
            https://app.skyvern.com/settings.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowScheduleListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WorkflowScheduleListResponse:
      properties:
        schedules:
          items:
            $ref: '#/components/schemas/WorkflowSchedule'
          type: array
          title: Schedules
      type: object
      required:
        - schedules
      title: WorkflowScheduleListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WorkflowSchedule:
      properties:
        workflow_schedule_id:
          type: string
          title: Workflow Schedule Id
        organization_id:
          type: string
          title: Organization Id
        workflow_permanent_id:
          type: string
          title: Workflow Permanent Id
        cron_expression:
          type: string
          title: Cron Expression
        timezone:
          type: string
          title: Timezone
        enabled:
          type: boolean
          title: Enabled
        parameters:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Parameters
        temporal_schedule_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Temporal Schedule Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        created_at:
          type: string
          format: date-time
          title: Created At
        modified_at:
          type: string
          format: date-time
          title: Modified At
        deleted_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Deleted At
      type: object
      required:
        - workflow_schedule_id
        - organization_id
        - workflow_permanent_id
        - cron_expression
        - timezone
        - enabled
        - created_at
        - modified_at
      title: WorkflowSchedule
    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

````