v1

latestOpenAPI 3.0.3MIT2026-07-1411163326.7 KB
Pipeline Definition

List pipeline definitions

List all pipeline definitions for a given project. Share feedback about our Project Administration APIs.

get/projects/{project_id}/pipeline-definitions

Path parameters

project_idstring required

An opaque identifier of a project.

Response

Successful response.

Example response

{
  "items": [
    {
      "name": "some pipeline",
      "description": "some pipeline description",
      "config_source": {
        "provider": "github_app",
        "repo": {
          "full_name": "some-org/some-repo-name",
          "external_id": "some-repo-id"
        },
        "file_path": ".circleci/some-pipeline.yml"
      },
      "checkout_source": {
        "provider": "github_app",
        "repo": {
          "full_name": "some-org/some-repo-name",
          "external_id": "some-repo-id"
        }
      }
    }
  ]
}