> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt
> Use this file to discover all available pages before exploring further.

# Pipelines

> Manage pipeline definitions and stages for workflow tracking.

Pipelines are typed and commonly used for contact lifecycle tracking.

## Endpoints in this guide

* `GET /api/pipelines?type=Contact`
* `POST /api/pipelines?type=Contact`

## Create pipeline

```bash theme={null}
curl -X POST "https://your-instance.example.com/api/pipelines?type=Contact" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Sales pipeline",
    "stages": ["New", "Qualified", "Closed"]
  }'
```
