VUZDevelopers

Get dashboard client growth chart data

GET
/analytics/dashboard-client-growth

Retrieves time-series data for client growth on the dashboard.

Time Range Options:

  • last7days: Last 7 days (daily granularity)
  • last30days: Last 30 days (daily granularity) - DEFAULT
  • last3months: Last 3 months (weekly granularity)
  • ytd: Year to date (monthly granularity)

Data Returned:

  • New clients per period
  • Total clients at end of each period
  • Summary with totals and growth rate
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

range*string

Time range for the chart

Default"last30days"

Value in

  • "last7days"
  • "last30days"
  • "last3months"
  • "ytd"
  • "lastyear"
  • "custom"

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/analytics/dashboard-client-growth?range=last30days"
{  "range": "last30days",  "granularity": "daily",  "startDate": "2025-12-01",  "endDate": "2025-12-30",  "dataPoints": [    {      "date": "2025-01-15",      "label": "15 ינואר",      "newClients": 5,      "totalClients": 150    }  ],  "summary": {    "totalNewClients": 25,    "currentTotal": 150,    "growthRate": 12.5  }}