Audience Data¶
The API request comprises of elements that can be combined to query your audience data. The parameters that apply to this table:
https ://api-metrics.flurry.com/public/v1/data/audience/day/app/generalInterestCategory?metrics=activeDevices&dateTime=2017-04-01/2017-04-02&filters=[…]&topN=[..]&sort=[..]&having=[..]&format=[..]&timeZone=[..]
Audience 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 |
(*) requires app to use SDK API for setting app user id
Audience 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 |
city |
||
region |
Region id and name |
id, name (default) |
geoArea |
||
language |
Language id and name |
id, name (default) |
category |
App category id and name |
id, name (default) |
age |
||
ageEstimate |
||
gender |
||
genderEstimate |
||
generalInterestCategory |
||
platform |
Audience 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 Audience Data Query¶
Retrieve activeDevices metric broken out by General Interest Category for an app foo
Request:
https://api-metrics.flurry.com/public/v1/data/audience/day/app/generalInterestCategory?metrics=activeDevices&dateTime=2017-04-01/2017-04-02&filters=app|name-in[foo]
Response:
{
"rows": [
{
"dateTime": "2017-04-01 00:00:00.000-07:00",
"app|name": "foo",
"generalInterestCategory|name": "Home and Garden",
"activeDevices": 24
},{
"dateTime": "2017-04-01 00:00:00.000-07:00",
"app|name": "foo",
"generalInterestCategory|name": "Shopping",
"activeDevices": 45
},{
"dateTime": "2017-04-01 00:00:00.000-07:00",
"app|name": "foo",
"generalInterestCategory|name": "Shopping",
"activeDevices": 32
}]
}