---
title: "Get a specific pipeline"
description: "GET /pipelines/{pipeline_id} — Returns one pipeline with its ordered stages. Each stage has a numeric stage position and a label; a pipeline holds between one and nine stages."
canonical_url: https://developer.onepagecrm.com/api/reference/pipelines/get-pipelines-pipeline_id/
source: Markdown mirror of https://developer.onepagecrm.com/api/reference/pipelines/get-pipelines-pipeline_id/
---

`GET /pipelines/{pipeline_id}`

Returns one pipeline with its ordered stages. Each stage has a numeric stage position and a label; a pipeline holds between one and nine stages. default reflects whether it is your own default pipeline.

Resource: [Pipelines](https://developer.onepagecrm.com/api/reference/pipelines/) · [API Reference](https://developer.onepagecrm.com/api/reference/)

## Request

```bash
curl "https://app.onepagecrm.com/api/v3/pipelines/{pipeline_id}" \
  -u $user_id:$api_key
```

Authentication is HTTP Basic — `user_id` as username, `api_key` as password.
See https://developer.onepagecrm.com/api/authentication/.

## Path parameters

| Name | Type | Description |
| --- | --- | --- |
| `pipeline_id` | string | Pipeline ID |

## Responses

### 200

OK

```json
{
  "status": 0,
  "message": "OK",
  "timestamp": 1528373119,
  "data": {
    "pipeline": {
      "id": "5c96306b849d78b896b6f8ca",
      "name": "Default pipeine",
      "type": "sales",
      "default": true,
      "won_column_enabled": false,
      "won_column_name": "Payment",
      "stages": [
        {
          "stage": 80,
          "label": "Negotiation"
        }
      ]
    }
  }
}
```

Standard error responses: 400, 401, 403, 404, 409, 500 — shared across the API. See https://developer.onepagecrm.com/api/errors/.

## Related guides

- [Authentication](https://developer.onepagecrm.com/api/authentication/)
- [Errors](https://developer.onepagecrm.com/api/errors/)
- [Rate limits](https://developer.onepagecrm.com/api/rate-limits/)
