Skip to main content
GET
/
screens
/
analytics
/
overview
Get screens analytics overview
curl --request GET \
  --url https://api.qonversion.io/v4/screens/analytics/overview \
  --header 'Authorization: Bearer <token>'
{
  "object": "screens_analytics_overview",
  "url": "/v4/screens/analytics/overview",
  "data": {
    "kpis": {
      "views": {
        "value": 12540,
        "prev": 11820,
        "sparkline": [
          1500,
          1620,
          1710,
          1840,
          1900,
          1950,
          2020
        ]
      },
      "impressions": {
        "value": 12540,
        "prev": 11820,
        "sparkline": [
          1500,
          1620,
          1710,
          1840,
          1900,
          1950,
          2020
        ]
      },
      "trials": {
        "value": 820,
        "prev": 760,
        "sparkline": [
          95,
          104,
          112,
          118,
          125,
          130,
          136
        ]
      },
      "purchases": {
        "value": 215,
        "prev": 198,
        "sparkline": [
          24,
          27,
          29,
          31,
          33,
          35,
          36
        ]
      },
      "revenue": {
        "value": 4320.5,
        "prev": 3980.1,
        "sparkline": [
          480,
          520,
          560,
          610,
          640,
          680,
          830.5
        ]
      },
      "conversion": {
        "value": 0.0171,
        "prev": 0.0168,
        "sparkline": [
          0.016,
          0.016,
          0.017,
          0.017,
          0.017,
          0.018,
          0.018
        ]
      }
    },
    "period": {
      "from": 1776413711,
      "to": 1777018511,
      "unit": "day"
    }
  }
}

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 analytics period (ISO 8601 date or datetime).

Example:

"2025-01-01"

to
string

End of the analytics period (ISO 8601 date or datetime).

Example:

"2025-12-31"

environment
string

Filter by environment.

currency
string

Currency code for revenue metrics (ISO 4217).

Example:

"USD"

unit
string

Time unit for grouping analytics data.

Response

Aggregated analytics overview across all screens.

Analytics overview object wrapped in the standard v4 envelope (object, url, data). KPI values are scalars with previous-period comparison and sparkline arrays.