VUZDevelopers

Get client growth trend data

GET
/analytics/clients/growth

Retrieves time-series data for client growth visualization.

Granularity Options:

  • daily: Individual day data points
  • weekly: Weekly aggregated data
  • monthly: Monthly aggregated data (default)

Data Returned:

  • New clients per period
  • Total clients (cumulative)
  • Active clients
  • 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

startDate?string

Start date (ISO format)

endDate?string

End date (ISO format)

granularity?string
Default"monthly"

Value in

  • "daily"
  • "weekly"
  • "monthly"

Response Body

application/json

application/json

curl -X GET "https://example.com/analytics/clients/growth"
{  "granularity": "string",  "startDate": "string",  "endDate": "string",  "dataPoints": [    {      "date": "string",      "label": "string",      "labelEn": "string",      "newClients": 0,      "totalClients": 0,      "activeClients": 0    }  ],  "totalNew": 0,  "growthRate": 0}