Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any api for dashboard analytics data?

Tags:

Is there any way i can query in my app for data from the analytics tab of dashboard?

For example:

ref.on("value", function(dashboard) {
 console.log(dashboard.concurrentUsers)
});
like image 408
Aljoša Srebotnjak Avatar asked Jan 29 '16 23:01

Aljoša Srebotnjak


People also ask

Is there any API for Google Analytics?

Introduction. The Google Analytics Reporting API v4 provides programmatic methods to access report data in Google Analytics (Universal Analytics properties only). With the Google Analytics Reporting API, you can: Build custom dashboards to display Google Analytics data.

What is data Analytics API?

Analytics APIs are APIs that enable applications to perform a systematic analysis of data and provides insights into the meaning of the data to help in decision making.

Is Google Analytics API free?

Basic Google Analytics is free and Google is trying to keep people from abusing it and steer heavy users to its premium service.


1 Answers

From the "dashboard.concurrentUsers" in your question, it looks like you're trying to get the data from the Analytics tab of your dashboard.

As of Oct/Nov 2020 there is an Analytics Data API that you can use to run Analytics reports and retrieve data

You can also enable the BigQuery integration. Doing this means that all Google Analytics for Firebase events from that moment on will be written to BigQuery, where you can query them. This is the raw data, the events written by your apps, and not the aggregated data that you find in the dashboard.

like image 86
Frank van Puffelen Avatar answered Sep 18 '22 14:09

Frank van Puffelen