# List Pipelines

```
POST /api/v1/list_pipelines
```

## **Request Body (JSON):**

```json
{
  "virtual_cluster_id": "vci_xxx"
}
```

### **CURL Example:**

```bash
curl https://api.warpstream.com/api/v1/list_pipelines \
-H 'warpstream-api-key: XXXXXXXXXX' \
-H 'Content-Type: application/json' \
-d '{"virtual_cluster_id": "vci_xxx"}' 
```

## **Response Body (JSON):**

```json
{
  "pipelines": [
    {
      "id": "pipeline-xyz",
      "name": "my-pipeline",
      "state": "running",
      "type": "bento",
      "deployed_configuration_id": "xxx"
    },
    // ... more pipelines
  ]
}
```
