1

Does Google Analytics Reporting API support calls to get the user engagement report data (as present in the Analytics website)

GA-EngagementReporting

I searched but could not get any tangible information. I am not sure if this is same as what I am looking for.

Can someone please point me to some tangible info regarding this.

Community
  • 1
  • 1
shrivb
  • 1,511
  • 3
  • 15
  • 20
  • Ever find a solution to this? I too would like to simulate this chart. – M Schenkel May 19 '15 at 01:05
  • @Schenkel, nope. not yet. I was spiking something and needed that info. When actual dev starts I would have to dig deeper. Shall update if I find something. – shrivb May 22 '15 at 05:07

1 Answers1

1

The relevant source for all "can I query this from the API"-questions is the "Dimensions and Metrics Reference" from the Google Analytics Documentation.

The closest thing to what you want is ga:sessionDurationBucket. However this dimension (it looks like a metric/number but is actually a string and a dimension) reports in second increments, whereas the report in the GA interface reports in 30 second increments. So if you query this from the api you would have to do the grouping into larger increments yourself.

Eike Pierstorff
  • 31,996
  • 4
  • 43
  • 62