---
title: "List Orchestrations"
method: GET
path: "/orchestrations"
tags: ["Orchestrations"]
---

# List Orchestrations

`GET /orchestrations`

List all Orchestrations in pages, sorted by name in alphabetical order.

## Query parameters

- `starting_after` string
- `limit` integer

## Response `200`

- PagedOrchestrationDto
  - `has_more` boolean, required — Indicates whether there are more items to be fetched in the subsequent pages.
  - `next_cursor` string — The cursor to use in pagination. Use this value as `starting_after` to get the next page.
  - `data` OrchestrationDto[], required — List of Orchestrations
    - `id` string, required — The Id of the Orchestration.
    - `name` string, required — The name of the Orchestration.
    - `cron_expression` string, required — The cron expression defining when the Orchestration runs.
    - `description` string, nullable, required — The description of the Orchestration.
    - `active` boolean, required — Whether the Orchestration is active.

---

[API](https://skmtc.net/weld/apis/weld-rest-api.md) · [All operations](https://skmtc.net/weld/apis/weld-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/weld/weld-rest-api/revisions/75294f591cc2/schema)
