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

# List refresh schedules for a dashboard

> List all Mage schedules associated with agents for this dashboard.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/dashboards/{dashboard_id}/schedules
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/v1/dashboards/{dashboard_id}/schedules:
    get:
      tags:
        - dashboard-refresh
      summary: List refresh schedules for a dashboard
      description: List all Mage schedules associated with agents for this dashboard.
      operationId: list_dashboard_schedules_api_v1_dashboards__dashboard_id__schedules_get
      parameters:
        - name: dashboard_id
          in: path
          required: true
          schema:
            type: string
            title: Dashboard Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DashboardScheduleInfo'
                title: >-
                  Response List Dashboard Schedules Api V1 Dashboards  Dashboard
                  Id  Schedules Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    DashboardScheduleInfo:
      properties:
        schedule_id:
          type: string
          title: Schedule Id
        agent_id:
          type: integer
          title: Agent Id
        interval:
          type: string
          title: Interval
        status:
          type: string
          title: Status
        next_run:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Run
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
      type: object
      required:
        - schedule_id
        - agent_id
        - interval
        - status
      title: DashboardScheduleInfo
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````

## Related topics

- [Delete a dashboard refresh schedule](/api-reference/dashboard-refresh/delete-a-dashboard-refresh-schedule.md)
- [Schedule automatic refresh of a dashboard via an agent](/api-reference/dashboard-refresh/schedule-automatic-refresh-of-a-dashboard-via-an-agent.md)
- [List dashboards](/api-reference/dashboards/list-dashboards.md)
- [Schedule automatic refresh of a chart via an agent](/api-reference/chart-refresh/schedule-automatic-refresh-of-a-chart-via-an-agent.md)
- [List Schedule Runs](/api-reference/scheduler/list-schedule-runs.md)
