Skip to content

List Pipeline Stages

List Pipeline Stages

GET https://api.copper.com/developer_api/v1/pipeline_stages

Pipeline Stages define the positions of Opportunities within their Pipelines. The Pipeline Stages API allows you to retrieve the list of Pipeline Stages associated with your Copper account.

Field Type Details
id identifier Unique identifier for the Pipeline Stage.
name string The name of the Pipeline Stage.
pipeline_id identifier The unique identifier of the Pipeline in which this Pipeline Stage is.
win_probability number The expected probability of winning an Opportunity in this Pipeline Stage. Valid values are [0-100] (inclusive).

Example Requests

Pipeline Stages

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/pipeline_stages" \
  --header "X-PW-AccessToken: YOUR_TOKEN_HERE" \
  --header "X-PW-Application: developer_api" \
  --header "X-PW-UserEmail: YOUR_EMAIL_HERE" \
  --header "Content-Type: application/json"
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[
  {
    "id": 987790,
    "name": "Qualified",
    "pipeline_id": 213214,
    "win_probability": 5
  },
  {
    "id": 987791,
    "name": "Follow-up",
    "pipeline_id": 213214,
    "win_probability": 10
  },
  {
    "id": 987792,
    "name": "Presentation",
    "pipeline_id": 213214,
    "win_probability": 20
  },
  {
    "id": 987793,
    "name": "Contract Sent",
    "pipeline_id": 213214,
    "win_probability": 40
  },
  {
    "id": 987794,
    "name": "Negotiation",
    "pipeline_id": 213214,
    "win_probability": 80
  },
  {
    "id": 987795,
    "name": "First Meeting",
    "pipeline_id": 213215,
    "win_probability": 10
  },
  {
    "id": 987796,
    "name": "Partner Meeting",
    "pipeline_id": 213215,
    "win_probability": 25
  },
  {
    "id": 987797,
    "name": "Negotiation",
    "pipeline_id": 213215,
    "win_probability": 50
  },
  {
    "id": 987798,
    "name": "Term Sheet",
    "pipeline_id": 213215,
    "win_probability": 75
  }
]