Skip to main content
{
  "organization_slug": "<string>",
  "pipelines": [
    {
      "id": "<string>",
      "slug": "<string>",
      "description": "<string>",
      "steps": [
        {}
      ],
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}
Retrieve all pipelines associated with your organization.

Examples

from chonkie.cloud import Pipeline

pipelines = Pipeline.list()

for p in pipelines:
    print(f"{p.slug}: {p.describe()}")

Response

organization_slug
string
Organization that owns the pipelines.
pipelines
array
Array of pipeline objects, each containing: