Technical Data¶
The API request comprises of elements that can be combined to query your technical data. The parameters apply to this table:
https:/ /api-metrics.flurry.com/public/v1/data/technical/day/app/carrier?metrics=activeDevices&dateTime=2017-04-01/2017-04-02&filters=[…]&topN=[..]&sort=[..]&having=[..]&format=[..]&timeZone=[..]
Technical Data Metrics¶
Below are metrics that are available for reporting.
Metric |
Description |
---|---|
sessions |
number of times users accessed the application |
activeDevices |
total unique devices that accessed the application |
newDevices |
new devices that installed and launched the application |
timeSpent |
time users spent in the application |
averageTimePerDevice |
average time users spent in the application per device |
averageTimePerSession |
average time users spent in the application per session |
Technical Data Dimensions¶
Below are dimensions and dimension attributes that are available for reporting.
Dimension |
Description |
Value |
---|---|---|
company |
Flurry company account |
id, name (default) |
app |
Flurry app |
id, name (default), company|id, apiKey, platform|id, platform|name |
country |
Per country dimension totals |
id, name (default), iso |
appVersion |
App’s version id, name, company id, app id, deleted and filtered. Deleted and filtered are boolean (0 or 1) and reflect current status of an app version based on developer’s action on Flurry developer portal |
id, name (default), company|id, app|id, deleted, filtered |
category |
App category id and name |
id, name (default) |
carrier |
||
region |
Region id and name |
id, name (default) |
deviceModel |
Device models |
id, name (default) |
osVersion |
Operating system version |
id, name (default) |
platform |
Device Platform |
id, name (default) |
Technical Date time Grain¶
day
week
month
all
Refer to Analytics API for all the parameters, list of error codes and other general information about this API
Example Technical Data Query¶
Retrieve activeDevices metric broken out by top 3 carriers for an app foo
Request:
https://api-metrics.flurry.com/public/v1/data/technical/day/app/carrier?metrics=activeDevices&dateTime=2017-04-01/2017-04-02&filters=app|name-in[foo]&topN=3&sort=activeDevices
Response:
{
"rows": [
{
"dateTime": "2017-04-01 00:00:00.000-07:00",
"app|name": "foo",
"carrier|name": "verizon wireless",
"activeDevices": 200
},{
"dateTime": "2017-04-01 00:00:00.000-07:00",
"app|name": "foo",
"carrier|name": "att mobility llc",
"activeDevices": 100
},{
"dateTime": "2017-04-01 00:00:00.000-07:00",
"app|name": "foo",
"carrier|name": "t-mobile usa inc.",
"activeDevices": 50
}]
}