cURL
curl --request GET \ --url https://api.example.com/v1/pipeline/{slug}
{ "id": "<string>", "slug": "<string>", "description": "<string>", "organization_slug": "<string>", "steps": [ {} ], "created_at": "<string>", "updated_at": "<string>" }
Retrieve a specific pipeline by its slug
from chonkie.cloud import Pipeline pipeline = Pipeline.get("my-rag-pipeline") print(f"Slug: {pipeline.slug}") print(f"Description: {pipeline.description}") print(f"Steps: {pipeline.to_config()}")
Was this page helpful?