Skip to main content
GET
/
pipelines
List pipelines
curl --request GET \
  --url https://app.dilli.studio/api/v1/pipelines \
  --header 'X-Api-Key: <api-key>'
{
  "current_page": 123,
  "per_page": 123,
  "total": 123,
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "stages": [
        {
          "id": "<string>",
          "external_id": "<string>",
          "name": "<string>",
          "order": 123,
          "color": "<string>",
          "probability": 123
        }
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}
Use the API Playground below to send this request with your X-Api-Key. The base URL and headers are prefilled; update any path, query, or body fields and click Send.

Authorizations

X-Api-Key
string
header
required

Query Parameters

Response

200 - application/json

OK

current_page
integer
per_page
integer
total
integer
data
object[]