Questions tagged [youtube-analytics-api]

The YouTube Reporting and YouTube Analytics APIs let you retrieve YouTube Analytics data to automate complex reporting tasks, build custom dashboards, and much more.

The YouTube Reporting and YouTube Analytics APIs let you retrieve YouTube Analytics data to automate complex reporting tasks, build custom dashboards, and much more.

  • The Reporting API supports applications that can retrieve and store bulk reports, then provide tools to filter, sort, and mine the data.
  • The Analytics API supports targeted, real-time queries to generate custom reports in response to user interaction.
254 questions
0
votes
0 answers

Get backfill reports for past dates using Youtube Analytics and Reporting API

What we have: We have our own reporting database for a Youtube content owner to monitor performance of our Youtube channels. We have an ETL job that pulls latest reports everyday of type content_owner_basic_a3. What the problem is: Since Youtube…
Mehmood
  • 33
  • 1
  • 6
0
votes
1 answer

How can I avoid having to manually obtain OAuth 2.0 authorization codes for Youtube Analytics API?

I'd like to set up my code to run daily but the only roadblock is OAuth. I have to login to my Google account each time I run my code to obtain the authorization code to access my Youtube data. I'm trying to find a way to either store the…
0
votes
0 answers

YouTube Reporting API with multi channel data

I'm trying to produce a script that pulls the estimated watch time and watch percetage for one/some/all of my videos on my Youtube channel(s). I can get the below to run but it returns zeros as it only runs on my account which has no videos directly…
0
votes
0 answers

Can we get tags from YouTube Analytics API?

I read its possible to get tags from Youtube Data API v3. YouTube API - get tags for all videos with playlist query But I was wondering if the same is possible FROM Youtube Analytics API? Thanks for the help But I was wondering if the same is…
0
votes
0 answers

YouTube Channel Reports API not giving metrics (views, likes...) for current day (using Targeted Queries)

I'm using channel_reports from YouTube analytics API to fetch metrics such as views, likes, etc, but I can't fetch data for the current day (I can tough, get data spanning from a few days back). Even if I watch, like a bunch of videos and subscribe…
0
votes
0 answers

How to use Youtube Analytics API to get the content that can be displayed in Youtube Studio

I would like to get the number of impressions by traffic source, for example, which can be displayed on the youtube studio analytics screen, using the Youtube Analytics API. Looking at the official reference, it doesn't seem to be possible to get…
0
votes
1 answer

Is it possible to get viewer retention data from third party YouTube channels?

So, with the help of the YouTube Analytics API it's possible to get viewer retention of your own channel. But is it maybe possible (maybe with the YouTube Data API v3) to get the viewer retention of every channel out there? I tried to get the viewer…
patrick
  • 1
  • 1
0
votes
0 answers

Use YouTubeAnalytics API to get stats from other channels

This code works fine when I'm accessing my own channel: function test(){ const channelId = "UC702oPAKxKSQdxvqnAWlkiA" let response = YouTube.Channels.list('statistics',{id:channelId}); let stats = response.items[0].statistics; …
Spencer
  • 453
  • 4
  • 21
0
votes
0 answers

concurrent view count of specific video in video sharing providers like youtube in realtime

How to count of viewer of video like viewer of live stream, to find trended video in realtime, not in time span. A service that looks like youtube studio that provides statistics for others videos. The way to retrieve watching counter, for video,…
0
votes
0 answers

YouTube analytics API missing data for last 3 Days

We are calling the metrics endpoint to retrieve likes, dislikes, comments, shares and avg watch time for…
nt95
  • 455
  • 1
  • 6
  • 21
0
votes
0 answers

Unable to retrieve Analytics data for branded accounts using YouTube Analytics API

I am trying to get analytics data for a brand account that I am the administrator of. I am going to use Google Apps Script and YouTube Analytics API to retrieve the data. I have done the following. Creating Google Apps Script Enabling YouTube…
0
votes
0 answers

how to get a permission for Youtube analytics API

I have a permission as a "Manager" in Youtube channels. But I can't execute the Youtube analytics API. It works only as a "Owner" account. It's possible to view the analytics data in youtube studio. Is there any way to use the Analytics API as a…
0
votes
1 answer

Is there a way to retrieve all metrics for a video separated by subscription status for Youtube analytics API?

I am trying to find all views for all the videos that I have that is separated by subscription status of my viewers. But I'm getting an error using these dimensions. I am currently using a Wrapper library called Analytix and here's how I'm querying…
0
votes
0 answers

How can I fetch the Number of Clicks on a YouTube LiveChat Message?

I am using YouTube LiveChat Insert API to put some external website links into a user's YouTube LiveStream. The URL is inserted into the LiveChat once every 15 minutes. Our requirement now is to get the metrics from these LiveChat messages inserted…
0
votes
2 answers

In python, is there any way I can store a 'Resource' object so I can use it later?

I am writing a program about the YouTube API flow = google_auth_oauthlib.flow.InstalledAppFlow.from_client_secrets_file(client_secrets_file, scopes) credentials = flow.run_console() youtube_analytics =…