Justtrack Documentation
HomePromoteAnalyzeDevelopResources
API
API
  • Overview
  • Reporting API
    • Overview
    • Common Objects
    • Acquisition
    • Cohort
    • Event Drill Down
    • Funnel Progression
  • Management API
    • Overview
    • App
    • Bid Upload
    • Campaign
    • Client Network Vendor Attributes
    • Configure Features
    • Network
    • Vendor Configuration
  • Revenue Events API
    • Overview
    • Customers
    • Revenue Providers
  • User Events API
    • Overview
    • User Events
Powered by GitBook
On this page
  • About
  • Table & Graph API
  • Request
  • Response
  1. Reporting API

Funnel Progression

Last updated 1 year ago

About

The Funnel Progression API provides access to the same data that is available on the page in the justtrack platform.

Supported metrics
[
  "churnRate",
  "usersOfStepOne"
]

Table & Graph API

Send a POST request to:

curl -H X-API-Key: <API_KEY> https://api.justtrack.io/reporting/v1/funnel/progression

Request

{
    "interval": {
        "from": "2023-08-01",
        "until": "2023-08-02" 
    },
    "metrics": [ 
        "churnRate", 
        "usersOfStepOne"
    ],
    "dimension": "eventDimension[DIMENSION NAME]",
    "filters": { 
        "app": [
            "APP NAME" 
        ]
    }, 
    "pagination": {
        "page": 0,
        "limit": 25 
    }
}
Name
Type
Description

dimension

string

A dimension by which game events will be selected. Here, you have two options depends on your SDK setup:

  • eventDimension[element_id]

  • eventDimension[jt_level_name]

metrics

[]string

A list of requested metrics.

interval

An interval within which data should be aggregated.

filters

Filters to limit requested data. The app filter is required for this api.

pagination

Batch number and amount of data rows to return.

Response

{
   "pagination": {
       "page": int,
       "limit": int,
       "total": int
   },
   "rows": [
       {
           "event": string,
           "step": string,
           "<dimension>": string,
           "<metric>": float
       }
   ]
}
Name
Type
Description

pagination

Used pagination settings and total amount of data rows.

rows

A list of data rows. Also rows objects always contain event and step fields with corresponding values.

object

object

object

object

[]

Game Progression Funnel
Interval
Filters
Pagination
Pagination
Row