Skip to content

List Pipelines

List Pipelines

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

Pipelines define the stages through which Opportunities move as they progress through your sales process. The Pipelines API allows you to retrieve the list of Pipelines associated with your Copper account.

Field Type Details
id identifier Unique identifier for the Pipeline.
name string The name of the Pipeline.
stages object[] The list of Pipeline Stages in this Pipelines

Example Requests

Pipelines

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/pipelines" \
  --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
57
58
59
[
  {
    "id": 213214,
    "name": "Sales",
    "stages": [
      {
        "id": 987790,
        "name": "Qualified",
        "win_probability": 5
      },
      {
        "id": 987791,
        "name": "Follow-up",
        "win_probability": 10
      },
      {
        "id": 987792,
        "name": "Presentation",
        "win_probability": 20
      },
      {
        "id": 987793,
        "name": "Contract Sent",
        "win_probability": 40
      },
      {
        "id": 987794,
        "name": "Negotiation",
        "win_probability": 80
      }
    ]
  },
  {
    "id": 213215,
    "name": "Business Development",
    "stages": [
      {
        "id": 987795,
        "name": "First Meeting",
        "win_probability": 10
      },
      {
        "id": 987796,
        "name": "Partner Meeting",
        "win_probability": 25
      },
      {
        "id": 987797,
        "name": "Negotiation",
        "win_probability": 50
      },
      {
        "id": 987798,
        "name": "Term Sheet",
        "win_probability": 75
      }
    ]
  }
]