---
title: "GET /experimental/schedules"
method: GET
path: "/experimental/schedules"
tags: ["Schedules"]
---

# GET /experimental/schedules

`GET /experimental/schedules`

Lists schedules in the workspaces the caller can view, newest-first.

## Query parameters

- `sort` union
  - union[]
    - union
      - 'createdAt'
      - '-createdAt'
      - 'updatedAt'
      - '-updatedAt'
      - 'id'
      - '-id'
  - 'createdAt'
  - '-createdAt'
  - 'updatedAt'
  - '-updatedAt'
  - 'id'
  - '-id'
- `page[size]` number
- `page[after]` string
- `page[before]` string
- `workspaceId` string, uuid
- `projectId` string, uuid
- `status` union
  - 'active'
  - 'paused'

## Headers

- `Authorization` string

## Response `200`

Default Response

- object
  - `links` object, required
    - `self` string, uri, required
    - `next` string, uri, nullable, required
    - `prev` string, uri, nullable, required
  - `meta` object, required
    - `count` number, required
  - `data` object[], required
    - `id` string, uuid, required
    - `type` 'schedule', required
    - `attributes` union, required
      - object
        - `status` union, required
          - 'active'
          - 'paused'
        - `config` object, required
          - `skillRef` string, required
          - `repoUrl` string, required
          - `baseBranch` string, required
        - `resolvedSkill` object
          - `kind` union, required
            - 'registry'
            - 'local'
          - `name` string, nullable, required
          - `registry` object, nullable, required
            - `workspace` string, required
            - `tile` string, required
            - `version` string, nullable, required
          - `path` string, nullable, required
          - `description` string, nullable, required
        - `label` string, nullable, required
        - `description` string, nullable, required
        - `workspace` object, required
          - `id` string, uuid, required
          - `name` string, required
        - `createdBy` object, nullable, required
          - `id` string, uuid, required
          - `firstName` string, nullable, required
          - `lastName` string, nullable, required
        - `environment` object, nullable, required
          - `id` string, uuid, required
          - `name` string, required
        - `openFindingsCount` integer — Number of open Findings V2 findings observed by this schedule. Absent when the count cannot be determined.
        - `nextRunAt` string, date-time, nullable, required
        - `lastRunAt` string, date-time, nullable, required
        - `lastRun` object
          - `id` string, uuid, required
          - `status` union, required
            - 'pending'
            - 'completed'
            - 'failed'
            - 'cancelled'
          - `outcome` object
            - `status` union, required — What the skill did: `succeeded` — it did its work; `no_action` — it ran but made no change; `needs_input` — it asked a blocking question and stopped; `failed` — it tried and could not complete. Not the same as the launch run's own status, which says whether the platform got the skill to run at all.
              - …
            - `reason` string
          - `updatedAt` string, date-time, required
        - `definitionSource` union
          - 'app'
          - 'repo'
        - `sourceCommit` object
          - `sha` string, required
          - `repoFullName` string, required
        - `createdAt` string, date-time, required
        - `updatedAt` string, date-time, required
        - `kind` 'schedule', required
        - `cron` string, required
        - `timezone` string, required
        - `trigger` unknown, required
        - `action` unknown, required
      - object
        - `status` union, required
          - 'active'
          - 'paused'
        - `config` object, required
          - `skillRef` string, required
          - `repoUrl` string, required
          - `baseBranch` string, required
        - `resolvedSkill` object
          - `kind` union, required
            - 'registry'
            - 'local'
          - `name` string, nullable, required
          - `registry` object, nullable, required
            - `workspace` string, required
            - `tile` string, required
            - `version` string, nullable, required
          - `path` string, nullable, required
          - `description` string, nullable, required
        - `label` string, nullable, required
        - `description` string, nullable, required
        - `workspace` object, required
          - `id` string, uuid, required
          - `name` string, required
        - `createdBy` object, nullable, required
          - `id` string, uuid, required
          - `firstName` string, nullable, required
          - `lastName` string, nullable, required
        - `environment` object, nullable, required
          - `id` string, uuid, required
          - `name` string, required
        - `openFindingsCount` integer — Number of open Findings V2 findings observed by this schedule. Absent when the count cannot be determined.
        - `nextRunAt` string, date-time, nullable, required
        - `lastRunAt` string, date-time, nullable, required
        - `lastRun` object
          - `id` string, uuid, required
          - `status` union, required
            - 'pending'
            - 'completed'
            - 'failed'
            - 'cancelled'
          - `outcome` object
            - `status` union, required — What the skill did: `succeeded` — it did its work; `no_action` — it ran but made no change; `needs_input` — it asked a blocking question and stopped; `failed` — it tried and could not complete. Not the same as the launch run's own status, which says whether the platform got the skill to run at all.
              - …
            - `reason` string
          - `updatedAt` string, date-time, required
        - `definitionSource` union
          - 'app'
          - 'repo'
        - `sourceCommit` object
          - `sha` string, required
          - `repoFullName` string, required
        - `createdAt` string, date-time, required
        - `updatedAt` string, date-time, required
        - `kind` 'event', required
        - `cron` unknown, required
        - `timezone` unknown, required
        - `trigger` object, required
          - `eventCount` integer, required
          - `events` string[], required
        - `action` object, required
          - `skillRef` string, required

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

## Changes

- **2026-09-26** `b777eddaa913` — 14 breaking, 4 warning, 1 info
  - the `data/items/attributes` response's property type changed from `object` to no type for status `200`
  - removed the required property `data/items/attributes/config` from the response with the `200` status
  - removed the required property `data/items/attributes/createdAt` from the response with the `200` status
  - removed the required property `data/items/attributes/createdBy` from the response with the `200` status
  - …15 more
- **2026-09-15** `d50a02b79ad3` — 2 info
  - added the optional property `error/code` to the response with the `403` status
  - added the optional property `error/url` to the response with the `403` status
- **2026-09-12** `ff4456b002cc` — 1 info
  - added the optional property `data/items/attributes/sourceCommit` to the response with the `200` status
- **2026-09-11** `04f88c57328e` — 2 info
  - added the new optional `query` request parameter `projectId`
  - added the required property `data/items/attributes/environment` to the response with the `200` status
- **2026-09-08** `78f96a975834` — 2 info
  - added `subschema #2, subschema #3` to the `data/items/attributes/lastRun/outcome/status` response property `anyOf` list for the response status `200`
  - removed `subschema #2` from the `data/items/attributes/lastRun/outcome/status` response property `anyOf` list for the response status `200`

[Full history](https://skmtc.dev/tessl/apis/tessl-api/changes/experimental/schedules/get.md)

---

[API](https://skmtc.dev/tessl/apis/tessl-api.md) · [All operations](https://skmtc.dev/tessl/apis/tessl-api/llms.txt) · [OpenAPI document](https://skmtc.dev/tessl/apis/tessl-api/revisions/ee9b4e55fec4?raw)
