Skip to main content
GET
/
analytics
/
ltv
/
trial-conversion
Get LTV trial-conversion analytics data
curl --request GET \
  --url https://api.qonversion.io/v4/analytics/ltv/trial-conversion \
  --header 'Authorization: Bearer <token>'
{
  "object": "analytics_ltv_trial_conversion",
  "url": "/v4/analytics/ltv/trial-conversion",
  "trials_started": 1254,
  "trials_converted": 217,
  "conversion_rate": 0.173
}

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

cohort_from
integer<int64>

Cohort-range start (Unix timestamp, seconds). Defaults to now - 90 days.

cohort_to
integer<int64>
mode
enum<string>
default:by_days
Available options:
by_days,
by_renewals
environment
enum<integer>
default:1
Available options:
0,
1
segment
string
revenue_type
enum<string>
default:gross
Available options:
gross,
net
currency
string
default:USD
Pattern: ^[A-Z]{3}$
filter[<attribute>][]
string[]

Response

Trial→paid conversion summary.

object
enum<string>
required
Available options:
analytics_ltv_trial_conversion
url
string
required
trials_started
integer
required

Number of trials started in the cohort range.

trials_converted
integer
required

Subset of trials_started that became paid.

conversion_rate
number<double>
required

Decimal fraction — multiply by 100 for a percentage.

Required range: 0 <= x <= 1