Skip to main content
GET
/
customers
/
metrics
Get aggregated customer metrics
curl --request GET \
  --url https://api.qonversion.io/v4/customers/metrics \
  --header 'Authorization: Bearer <token>'
{
  "object": "customer_metrics",
  "url": "/v4/customers/metrics",
  "active_subscribers": "1284",
  "active_trials": "312",
  "avg_payment_count": 2.4,
  "avg_price": 14.99,
  "billing_retry": "18",
  "canceled_trials": 57,
  "churned_subscribers": 94,
  "clients_with_event": "9420",
  "sales": 4612
}

Documentation Index

Fetch the complete documentation index at: https://documentation.qonversion.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication using the project Secret Key (prefixed with sk_, or test_sk_ for sandbox). All v4 public endpoints require the Secret Key — see Authentication. Never expose the Secret Key in client-side code.

Query Parameters

environment
enum<integer>

Filter by environment: 0 = sandbox, 1 = production.

Available options:
0,
1

Search query string.

filter[status][]
string[]

Filter by customer status. Repeatable.

filter[target_platform][]
string[]

Filter by target platform. Repeatable.

Response

Customer metrics data.

Aggregated customer metrics wrapped in the v4 envelope (object, url). Scalar counters reflect the current filter set (environment, status, platform, search).