VUZDevelopers

Get pipeline funnel statistics

GET
/crm/dashboard/pipeline-stats

Returns per-stage deal counts, total values, conversion rate, average deal size, and average sales cycle. Optionally scoped to a single pipeline.

X-Api-Key<token>

Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.

In: header

Query Parameters

pipelineId?string

UUID of the pipeline to get statistics for. Omit for business-wide aggregation.

Response Body

application/json

curl -X GET "https://example.com/crm/dashboard/pipeline-stats"
{  "stages": [    {      "stageId": "string",      "name": "string",      "nameHe": "string",      "color": "string",      "dealCount": 0,      "totalValue": 0,      "avgDaysInStage": 0    }  ],  "conversionRate": 35.5,  "avgDealSize": 12500,  "avgSalesCycle": 21}