Skip to main content
GET
Membership KPIs
One call returns the aggregate figures — no paging. Date windows are half-open [from, to). Use start_from/start_to for the membership start date (and end_from/end_to, created_from/created_to). new_members counts contacts whose first-ever membership (by start date) falls in the window.

Authorizations

Authorization
string
header
required

OAuth2 access token. Pass the token in the Authorization header as Bearer <token>. The token is looked up in Redis to resolve the caller identity.

Query Parameters

start_from
string<date-time>

Only memberships starting on or after this date (inclusive).

start_to
string<date-time>

Only memberships starting strictly before this date (exclusive).

end_from
string<date-time>

Only memberships ending on or after this date (inclusive).

end_to
string<date-time>

Only memberships ending strictly before this date (exclusive).

created_from
string<date-time>

Only memberships created on or after this date (inclusive).

created_to
string<date-time>

Only memberships created strictly before this date (exclusive).

amount_min
integer<int64>

Minimum amount in cents (inclusive).

Required range: x >= 0
amount_max
integer<int64>

Maximum amount in cents (inclusive).

Required range: x >= 0
contact_id
integer<int64>[] | null

Filter by one or more contact IDs.

Required range: x >= 0
membership_price_id
integer<int64>[] | null

Filter by one or more membership price IDs.

Required range: x >= 0

Response

OK

data
object
required
status
string
required

Operation result.

Example:

"success"

Last modified on July 7, 2026