Skip to main content
GET
/
experiments
/
summary
Get experiments analytics summary
curl --request GET \
  --url https://api.qonversion.io/v4/experiments/summary \
  --header 'Authorization: Bearer <token>'
{
  "total_count": 1,
  "items": [
    {
      "uid": "a6a360a2-41ed-4964-b45a-ea1b0c3e3386",
      "experiment_id": 210,
      "project_id": 789,
      "name": "Paywall layout A/B",
      "alias_id": "paywall_layout_ab",
      "desc": "Compare two paywall layouts on iOS onboarding",
      "segment_percent": 100,
      "primary_metric": "subscription-cancellation",
      "goal_direction": "decrease",
      "goal_value": 4,
      "context_key": "",
      "context_specific": false,
      "status": "finished",
      "finished_at": 1712246400,
      "created_at": 1709654400,
      "updated_at": 1777051834,
      "groups": [
        {
          "uid": "df0ab472",
          "experiment_group_id": 407,
          "experiment_id": 210,
          "project_id": 789,
          "name": "Control group",
          "control": 1,
          "weight": 1,
          "created_at": 1709654400,
          "updated_at": 1709654400
        },
        {
          "uid": "3c458035",
          "experiment_group_id": 408,
          "experiment_id": 210,
          "project_id": 789,
          "name": "Test variant",
          "control": 0,
          "weight": 1,
          "remote_config_uid": "25561136-dc1b-4625-9a05-0550d1a04508",
          "created_at": 1709654400,
          "updated_at": 1709655000,
          "remote_config": {
            "remote_config_uid": "25561136-dc1b-4625-9a05-0550d1a04508",
            "project_id": 789,
            "payload": {
              "headline": "Unlock Pro",
              "cta": "Start free trial"
            },
            "created_at": 1709654400,
            "updated_at": 0
          }
        }
      ]
    }
  ]
}

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

from
string

Start of the time range (ISO 8601).

to
string

End of the time range (ISO 8601).

environment
string

Filter by environment.

summary_metric
string

Metric to summarize.

currency
string

Currency code (ISO 4217).

unit
string

Aggregation unit (e.g. day, week, month).

week_starts_on
string

Day of week that a week starts on (e.g. monday, sunday).

max_series
integer

Maximum number of series to return.

filter[experiment_uid]
string

Filter by experiment UID.

filter[experiment_uid][]
string[]

Filter by multiple experiment UIDs.

Response

Analytics summary data.

Experiments summary payload. items contains one entry per experiment matched by filter[experiment_uid][], with nested groups carrying the group metadata (control flag, weight, bound remote config).