Skip to main content

Get pipeline summary

Returns deal counts and total values grouped by stage.
GET /api/v1/pipeline
Example
curl https://api.mosscrm.com/api/v1/pipeline \
  -H "X-API-Key: moss_k_..."

Response

{
  "data": {
    "lead": { "count": 12, "value": 4500000 },
    "prospect": { "count": 8, "value": 12000000 },
    "negotiation": { "count": 3, "value": 8500000 },
    "won": { "count": 15, "value": 34000000 },
    "lost": { "count": 6, "value": 2800000 }
  }
}
Each stage contains:
FieldTypeDescription
countintegerNumber of deals in this stage
valueintegerTotal value of deals in this stage (in cents)