/api/v1/client-api/metrics/funnel/ Retrieve funnel data
Retrieves funnel data to track user progression through specific stages of a conversion process.
Rate limit: 2 requests per second.
Request body
Enter the date or time period for which you want to retrieve chart data
Enter the comparison date or time period
Filter by the app store where the purchase was made
Filter by the 2-letter country code where the purchase took place
Unique identifier of a product from the app store
Specify the subscription duration
The source integration for attribution
Indicates if the attribution is organic or non-organic
Marketing channel that led to the transaction
Marketing campaign that brought the transaction
Attribution ad group that brought the transaction
Attribution ad set that led to the transaction
Specific visual or text elements in an ad or campaign tracked to measure effectiveness
Specify the offer categories you want to retrieve data for
Specify the offer types you want to retrieve data for
Specify the specific offers you want to retrieve data for
Specify the time interval for aggregating analytics data
One of: "day", "week", "month", "quarter", "year"
Specify how values are displayed
One of: "absolute", "relative", "both"
Sets the basis for segmentation
Specify the export file format
One of: "json", "csv"
Responses
Funnel data retrieved successfully
Schema
Response containing funnel analysis data showing user progression through conversion stages
Array of funnel segments showing different stages of the conversion process
Display title for this funnel segment
Type of funnel segment ('total' for aggregated data)
Array of funnel values showing progression through stages
Period number in the funnel (-2 = Install, -1 = Paywall displayed, etc.)
Display title for this funnel stage
Number of users who reached this stage
Percentage of users who reached this stage relative to the first stage
Change in conversion rate compared to previous period
Information about users who dropped off after this stage
Title for the drop-off stage
Number of users who dropped off
Percentage of users who dropped off
Title describing the reason for churn at this stage
Array of specific churn reasons
Additional nested values for this funnel stage
Example
{
"data": [
{
"title": "Total",
"type": "total",
"values": [
{
"period": -2,
"title": "Install",
"value": 2,
"value_relative": 100,
"relative_changes": 0,
"following_changes": {
"title": "Drop off",
"value": 2,
"value_relative": 100
},
"churn_reason_title": "",
"churn_reasons": [],
"values": []
},
{
"period": -1,
"title": "Paywall displayed",
"value": 0,
"value_relative": 0,
"relative_changes": 0,
"following_changes": {
"title": "Drop off",
"value": 0,
"value_relative": 0
},
"churn_reason_title": "",
"churn_reasons": [],
"values": []
}
]
}
]
} Bad Request
Schema
Unauthorized
Schema
Rate limit exceeded. Maximum 2 requests per second per API key.