v1

latestOpenAPI 3.0.3MIT2026-07-1411163326.7 KB
Pipeline

Get a pipeline's workflows

Returns a paginated list of workflows by pipeline ID.

get/pipeline/{pipeline-id}/workflow

Path parameters

pipeline-idstring uuid required

The unique ID of the pipeline.

Query parameters

page-tokenstring

A token to retrieve the next page of results.

Response

A paginated list of workflow objects.

next_page_tokenstring required

A token to pass as a page-token query parameter to return the next page of results.

Example response

{
  "items": [
    {
      "pipeline_id": "5034460f-c7c4-4c43-9457-de07e2029e7b",
      "auto_rerun_number": 1,
      "name": "build-and-test",
      "project_slug": "gh/CircleCI-Public/api-preview-docs",
      "tag": "setup",
      "max_auto_reruns": 5,
      "pipeline_number": 25
    }
  ]
}