---
title: "List Pipelines"
method: GET
path: "/api/external/v2/pipelines"
tags: ["external-v2-pipelines"]
---

# List Pipelines

`GET /api/external/v2/pipelines`

List all pipelines belonging to the authenticated user's account.

Pipelines are returned with their associated statuses (ordered by ``order``).
Supports cursor-based pagination via ``limit`` and ``cursor`` query params.

## Query parameters

- `limit` integer — Number of results to return (1-200, clamped)
- `offset` integer — Offset for pagination (>= 0, clamped)
- `cursor` string, nullable — Base64 cursor for pagination

## Response `200`

Successful Response

- PipelineListResponse — OpenAPI schema for GET /api/external/v2/pipelines (list envelope).
  - `request_id` string, required
  - `timestamp` string, required
  - `data` PipelineResponse[], required
    - `id` integer, required
    - `pipeline_type` string, nullable, required
    - `pipeline_name` string, nullable, required
    - `description` string, nullable, required
    - `owner_account_id` integer, nullable, required
    - `order` integer, nullable, required
    - `statuses` PipelineStatusResponse[]
      - `id` integer, required
      - `status` string, required
      - `custom_status_name` string, nullable, required
      - `description` string, nullable, required
      - `order` integer, nullable, required
      - `icon` string, nullable, required
  - `pagination` unknown, required

## Other responses

- `422` — Validation Error

---

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