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

How can we get the impression shown on YouTube Studio using YouTube Analytics API?

I'm creating YouTube's metrics monitoring feature. But I faced one confusing point while using YouTube Analytics API. I want to retrieve a video impression shown on YouTube Studio using YouTube Analytics API. I'm using the following…
Sai Kaneko
  • 13
  • 3
0
votes
1 answer

"Insufficient permission to access this report." - youtube analytics api

I am trying to run this report: SCOPES =…
Jonas Palačionis
  • 4,591
  • 4
  • 22
  • 55
0
votes
0 answers

Use Youtube Analytics API without Oauth2 via Python?

I want to retrieve automatically some analytics data about our contents on our Youtube Channel such as views, likes, average view time, subscriptions by videos... So I followed the official documentation of Youtube Analytics, but when I run the…
0
votes
0 answers

Query of the YouTube Analyics API doesn't return any data for the last 3 days

Today is Nov 24th, 2020. I'm using this API: https://developers.google.com/youtube/analytics/reference/reports/query. I set the query parameters as: endDate=2020-11-24 (today), startDate=2020-11-20 (4 days…
0
votes
0 answers

Youtube Analytics Reports Query does not match the Youtube Channels List for same video list ID given as a filter

I have a channel of 11 videos, YouTube Analytics returns data only on 9 of them. Here is what I am doing: First we get the channels video list and make an array of video id. statslistitems_list_request = youtube.channels().list(part="snippet,…
0
votes
0 answers

How to fix get_report error in tubern package in R?

I'm trying to use the get_report() function from the 'tubern' package, but got an error message. library(tubern) yt_oauth("XXX", "XXX",token = "") report <- get_report(ids = "channel==UCiMg06DjcUk5FRiM3g5sqoQ", metrics = "views", start_date =…
Andrea
  • 1
0
votes
1 answer

How can I build or use chart exactly similar to YoutubeStudio analytics chart in my website ? I have provided the image of the chart

I have a website . Now I want to make or use the chart exactly same like youtube studio's chart. I had researched a lot but I didn't found any way to do it. I just want to add the analytic link chart of youtube studio. Image of chart is provided…
0
votes
1 answer

What is the proper format of request for querying a report?

Good afternoon everyone! I need to get the estimatedMinutesWatched parameter from YouTube's Analytics API. I found some examples on the internet, for example this one, and they all used the method: $api = $analytics->reports->query($id, $start_date,…
0
votes
1 answer

How to get view rate from Youtube Analytics API?

I have been reading through the API docs for YouTube, but I am having a hard time figuring out how I can calculate the number of views per week of a given video in Python. Is this possible? Thanks!
0
votes
0 answers

Unable to fetch YouTube Insights for some accounts

For specific accounts, we are able to fetch data but not able to fetch reporting analytics, I am getting error { "error": { "code": 403, "message": "Forbidden", "errors": [ { "message": "Forbidden", "domain": "global", "reason": "forbidden" } ] …
0
votes
0 answers

Is there a reason my youtube app gives me access to one youtube channel but not another?

I created a youtube app in console.developers.google.com that has the youtube data, youtube analytics and youtube reporting apis enabled. I also have access to multiple youtube channels that I'm hoping to automate some reports. several youtube…
0
votes
0 answers

"code": 403, "message": "Forbidden" when requesting data from YouTube Analytics API in youtube api document

I am creating an app related to customer service and marketing through social media and YouTube are the project i am working on. I have a job to obtain ads related data from YouTube api. I need to show this data on my app so our client can make sure…
daniel adi
  • 95
  • 5
0
votes
1 answer

YouTube Analytics API is returning 0 for Views & Subscribers Gained

I have made a GET request to try to get my views and subscribers gained on my youtube channel, and I get a 200 status, but the results are 0 startDate <- "2020-05-09" endDate <- "2020-05-24" metrics <- "views,subscribersGained" url <-…
Jacob
  • 406
  • 3
  • 19
0
votes
2 answers

access youtube analytics api via content manager account's client id

We have content manager account which has been granted to access to all channels we have. We do authorization procedure for each service accounts to get access tokens for analytics-API, it works well, but it also demands when new channel is…
Onejae Lee
  • 51
  • 5
0
votes
1 answer

YouTube analytics sample java program, after allowing the user consent and verifying my app I'm getting a 404 error response

I tried to execute You-tube analytics in java, using the sample java code available in git hub.The sample code allows me to get user consent page where I have allowed the access and while trying to execute the query using "reports().query("…