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
1 answer

Forbidden 403 when trying to access metrics for monetized channels

I'm looking for a way to test obtaining estimatedRevenue from the reporting api https://youtubeanalytics.googleapis.com/v2/reports?metrics=estimatedRevenue&startDate=2005-01-01&endDate=2022-08-03&ids=channel==MINE I am getting the proper…
RyanCodes
  • 175
  • 1
  • 5
0
votes
0 answers

YouTube Analytics returns "Request is missing required authentication credential. "

I want to use YouTube Analytics to crawl my video's some data. partial code is scopes = [ 'https://www.googleapis.com/auth/yt-analytics.readonly', 'https://www.googleapis.com/auth/youtube.download', …
0
votes
0 answers

Youtube analytics reports response empty rows

sorry if this question already exists, i'm trying to get audience retention data from Youtube API: (https://youtubeanalytics.googleapis.com/v2/reports), most of them are FINE, but some of videos response empty rows, meanwhile I can export audience…
0
votes
1 answer

Authorization Error when Connecting to Youtube Analytics API with Python

I have been trying to connect during several days to the YouTube Analytics API. I see that the solution in other posts is related about selecting 'Others' in the Application Type list. Apparently, this option is not available anymore. I have created…
MatmataHi
  • 188
  • 1
  • 12
0
votes
1 answer

YouTube Analytics API not returning demographic data for channel owner

I am using YouTube Analytics API with oauth2.0 authorization to get channel owner demographic(ageGroup and gender). It does not return any values for the ageGroup and gender. The login(authentication) part works and GAPI loads perfectly as well,…
user3255788
  • 33
  • 1
  • 4
0
votes
1 answer

How to extract Youtube channel email in About section using Youtube Data API or Youtube Analytics API

I Just want to extract Youtube channel email in About section using Youtube Data API or Youtube Analytics API, So how can I extract the email and bypass the captcha normally using the API
0
votes
1 answer

YouTube Analytics with Google Apps Script for a Brand Account

Hey I am trying to get the YouTube Analytics for a Brand Account. I am using Google Apps Script but now I have the problem that i always get the information for the Google Account not the Brand Account. At the Moment I am using this code. function…
0
votes
2 answers

Weird error while sending request to YouTube API PHP

I am currently working on a back-end processing that requests channel analytics info back from YouTube Analytics API on PHP. For some reason, I keep receiving a weird error message in: foreach ($metrics as $metric) { $api =…
0
votes
0 answers

How to get the view count for a specific time frame in a YouTube video?

I'm using the YouTube v3 API to fetch the user's videos uploaded on the channel. I need the video statistics (mainly the view count) for specific time-frames in a video. For example: from 10 second to 15 second in the video. Or maybe at the 10th…
0
votes
2 answers

How to get the exact subscribers of own youtube channel throughout API

i'm trying to retrieve the number of subscribers, but the number that I received was rounded, not correct number. By seeing the API docs, it is impossible to get exact subscribers number throughout youtube data API. So, I came up with the idea that…
0
votes
1 answer

How to retrieve video including paid promotion by YouTube API

We want to retrieve video data including promotions. Is there a way to get it with the YouTube Data API or the YouTube Analytics API? Is there any other way? A video that includes a promotion is a video that displays something like the image…
0
votes
1 answer

How to specify "Since Uploaded" as start date in YouTube Analytics API

I know I can send GET requests to the YouTube API specifying startDates and endDates using a format YYYY-MM-DD, but I'm hoping there is a certain format you could specify to tell the start date to be equal to the published date or upload date? My…
Jacob
  • 406
  • 3
  • 19
0
votes
1 answer

Content ID API to determine video ownership

Our company licenses YouTube videos - one of our key goals is to verify video level ownership prior to onboarding new creators to avoid a multi-party claim scenario and/or shared revenue (depending on claim type). We can leverage Manual claiming for…
0
votes
1 answer

Is there a Next Page Token in the YouTube Analytics API

I'm hoping to get analytics on all videos on my YouTube Channel. I have the following code: baseURL <-…
Jacob
  • 406
  • 3
  • 19
0
votes
1 answer

YouTube Analytics API Refresh Token Limit

I created Refresh token to authenticate my YouTube Analytics API using Python and saved it on my system for future use. But after one week I have found that even the Refresh token is expired and again I have to authenticate the app using OAuth…