---
title: "List Executor Configurations"
method: GET
path: "/v1/executors"
tags: ["Executor Configurations API"]
---

# List Executor Configurations

`GET /v1/executors`

Use this endpoint to retrieve a paginated list of executor configurations. You can filter results by status.

## Query parameters

- `status` 'unconfigured' | 'configured' | 'tested' | 'active' | 'disabled'
- `limit` integer
- `cursor` string
- `sortBy` 'createdAt' | 'updatedAt' | 'name'
- `sortOrder` 'ASC' | 'DESC'

## Response `200`

Indicates that the request was successful and the response contains the requested data.

- ExecutorConfigurationListOutput
  - `hasMore` boolean — Indicates whether more pages are available.
  - `items` ExecutorConfigurationOutput[] — List of executor configurations in the current page.
    - `authentication` ExecutorAuthenticationOutput
      - `config` object — Authentication parameters. Sensitive values are masked.
      - `type` string — Authentication method.
    - `baseUrl` string — Base URL of the external service.
    - `createdAt` string, date-time — Timestamp when the configuration was created.
    - `description` string — Human-readable description.
    - `endpoints` ExecutorEndpointOutput[] — List of configured HTTP endpoints.
      - `method` string — HTTP method.
      - `name` string — Endpoint name.
      - `path` string — URL path.
      - `timeout` integer — Request timeout in seconds.
    - `id` string, uuid — Unique identifier of the executor configuration.
    - `lastTestedAt` string, date-time — Timestamp of the last connectivity test. Null if never tested.
    - `metadata` object — Custom metadata.
    - `name` string — Display name.
    - `status` 'unconfigured' | 'configured' | 'tested' | 'active' | 'disabled' — Current lifecycle status: `unconfigured`, `configured`, `tested`, `active`, or `disabled`.
    - `updatedAt` string, date-time — Timestamp of the last update.
  - `nextCursor` string — Cursor for the next page.

## Other responses

- `400` — Indicates that the request was malformed or contained invalid parameters.
- `500` — Indicates an unexpected internal error. If this persists, please contact support.

---

[API](https://skmtc.net/lerian/apis/identity-plugin.md) · [All operations](https://skmtc.net/lerian/apis/identity-plugin/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lerian/identity-plugin/versions/25daba385532/schema)
