Skip to main content
{
  "id": "<string>",
  "slug": "<string>",
  "description": "<string>",
  "organization_slug": "<string>",
  "steps": [
    {}
  ],
  "created_at": "<string>",
  "updated_at": "<string>"
}
Fetch the configuration of a specific pipeline.

Examples

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()}")

Path Parameters

slug
string
required
The pipeline slug to retrieve.

Response

id
string
Unique identifier for the pipeline.
slug
string
The pipeline slug.
description
string
Pipeline description.
organization_slug
string
Organization that owns the pipeline.
steps
array
Array of pipeline step configurations.
created_at
string
ISO 8601 timestamp of creation.
updated_at
string
ISO 8601 timestamp of last update.

Errors

StatusDescription
404Pipeline not found