The API has been replaced by the list-dimension-values API call.
Lists the values for a filter along with a total count of related views.
ID of the Filter
Number of items to include in the response
Offset by this many pages, of the size of limit
Filter results using key:value pairs. Must be provided as an array query string parameter.
Basic filtering:
filters[]=dimension:value
- Include rows where dimension equals valuefilters[]=!dimension:value
- Exclude rows where dimension equals valueFor trace dimensions (like video_cdn_trace):
filters[]=+dimension:value
- Include rows where trace contains valuefilters[]=-dimension:value
- Exclude rows where trace contains valuefilters[]=dimension:[value1,value2]
- Exact trace matchExamples:
filters[]=country:US
- US views onlyfilters[]=+video_cdn_trace:fastly
- Views using Fastly CDNTimeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=).
Accepted formats are...
timeframe[]=1498867200&timeframe[]=1498953600
timeframe[]=24:hours or timeframe[]=7:days
{
"total_row_count": 1,
"timeframe": [
1610028123,
1610114523
],
"data": [
{
"value": "Chrome",
"total_count": 5
}
]
}