Skip to main content
GET
/
pipelines
List pipelines
curl --request GET \
  --url https://flozy-backend-1042419926531.us-central1.run.app/api/v1/external/pipelines \
  --header 'X-API-Key: <api-key>'
{
  "http_code": 200,
  "status": "success",
  "message": "Pipelines retrieved",
  "data": [
    {
      "id": 1,
      "name": "Sales",
      "stages": [
        {
          "id": 10,
          "name": "Qualified",
          "order_index": 1,
          "tag_name": "active"
        },
        {
          "id": 11,
          "name": "Proposal Sent",
          "order_index": 2,
          "tag_name": "active"
        },
        {
          "id": 12,
          "name": "Closed Won",
          "order_index": 3,
          "tag_name": "won"
        }
      ]
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Your Flozy API key. Starts with flz_live_.

Response

Pipelines with stages.