i’m working on google analytics and try to get some data from analytics. What i want is retrieving all table id and name from analytics but really dont know how to do. i spend hours in Google . Is there a way to do that ?

i want to take these all table like Izlesene.com KurtlarVadisi – Mobil uygulama and their ids how can i retrieve them ?
then i want to put them to my html
<td width="138"><strong>Kanal Adı</strong>
<td width="150"><b>Kategori Adı</b></td>
<td width="130"><p><strong>Event Adı</strong></td>
<td width="145"><strong>Toplam</strong>;
You can get that data out via the Management API.
Currently there’s no UI to get this data out that I’m aware of.
You can play with it in the Google API’s Explorer.
~allYou will get a JSON feed with the data you want. The API’s explorer are just a toy to play with the API though. You better off writing your own script to query it and get the data you need.