cURL
curl --request GET \ --url https://api.example.com/v1/pipeline
{ "organization_slug": "<string>", "pipelines": [ { "id": "<string>", "slug": "<string>", "description": "<string>", "steps": [ {} ], "created_at": "<string>", "updated_at": "<string>" } ] }
List all pipelines for your organization
from chonkie.cloud import Pipeline pipelines = Pipeline.list() for p in pipelines: print(f"{p.slug}: {p.describe()}")
Show child attributes
Was this page helpful?