---
title: "List Run Schedules"
method: GET
path: "/agents/{agent_id}/schedules"
tags: ["Schedules"]
---

# List Run Schedules

`GET /agents/{agent_id}/schedules`

List run schedules for an agent.

## Path parameters

- `agent_id` string, required

## Query parameters

- `limit` integer
- `include_live` boolean — Include live Temporal state and upcoming action times.

## Response `200`

Successful Response

- AgentRunScheduleListResponse — Response model for listing run schedules.
  - `run_schedules` AgentRunScheduleResponse[], required — The list of run schedules.
    - `id` string, required — The unique identifier of the run schedule.
    - `agent_id` string, required — The agent this schedule belongs to.
    - `name` string, required — Human-readable schedule name.
    - `description` string, nullable — Optional description.
    - `cron_expression` string, nullable — Cron cadence, if cron-based.
    - `interval_seconds` integer, nullable — Interval cadence in seconds, if interval-based.
    - `timezone` string — Timezone the cron expression is evaluated in.
    - `start_at` string, date-time, nullable — Schedule activation time.
    - `end_at` string, date-time, nullable — Schedule deactivation time.
    - `paused` boolean — Whether the schedule is paused.
    - `task_params` object, nullable — Task params at fire time.
    - `task_metadata` object, nullable — Task metadata at fire time.
    - `initial_input` ScheduleInitialInput, required — The first input delivered to each freshly created scheduled task.
      - `type` 'text' — Input content type.
      - `author` 'user' | 'agent'
      - `content` string, required — The initial prompt delivered to the task.
    - `initial_input_method` string, required — Delivery method, inferred from the agent's ACP type.
    - `creator_principal` ScheduleCreatorPrincipal — Credential-free creator identity stored with the schedule. Never carries cookies, JWTs, API keys, OAuth tokens, or request headers — it is creator *context* used only for AuthZ and ownership at fire time.
      - `principal_type` string, nullable — e.g. 'user' or 'service_account'.
      - `user_id` string, nullable — Creator user id, if a user principal.
      - `service_account_id` string, nullable — Creator service-account id, if a service principal.
      - `account_id` string, nullable — Account/workspace id of the creator.
    - `created_at` string, date-time, nullable — When the schedule was created.
    - `updated_at` string, date-time, nullable — When the schedule was updated.
    - `state` 'ACTIVE' | 'PAUSED' — Live state of a run schedule, derived from Temporal.
    - `next_action_times` string[] — Upcoming scheduled fire times.
    - `live_data_available` boolean, nullable — Whether requested live Temporal fields were retrieved successfully. Null when live enrichment was not requested.
    - `skipped_action_times` string[] — Skipped one-off scheduled fire times.
    - `last_action_time` string, date-time, nullable — When the schedule last fired.
    - `num_actions_taken` integer — Number of times the schedule has fired.
  - `total` integer, required — The number of run schedules returned.

## Other responses

- `422` — Validation Error

## Changes

- **2026-07-28** `8f725ddc153e` — 2 info
  - added the new optional `query` request parameter `include_live`
  - added the optional property `run_schedules/items/live_data_available` to the response with the `200` status
- **2026-07-10** `fbecbdbd7dc5` — 1 breaking, 1 warning, 3 info
  - removed the required property `schedules` from the response with the `200` status
  - deleted the `query` request parameter `page_size`
  - api operation id `list_schedules_agents__agent_id__schedules_get` removed and replaced with `list_run_schedules_agents__agent_id__schedules_get`
  - added the new optional `query` request parameter `limit`
  - …1 more

[Change history](https://skmtc.dev/scaleapi/apis/agentex-api/changes/agents/:agent_id/schedules/get.md)

---

[API](https://skmtc.dev/scaleapi/apis/agentex-api.md) · [All operations](https://skmtc.dev/scaleapi/apis/agentex-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/scaleapi/agentex-api/revisions/1e0aaafd5780/schema)
