I don't see an option in documentation for just "subscribers" but I can take subscribersGained and subtract subscribersLost. However, the number calculated is a bit lower than the actual result. Is there a reason for this or is there a way to actually get raw sub count?
Why is subscribersGained - subscribersLost different than my current sub count?
134 views Asked by Junion At
1
There are 1 answers
Related Questions in YOUTUBE-ANALYTICS-API
- How can i get the top youtube search data from youtube analytics api?
- Data for unlisted videos
- How can I expand my YouTube Reporting API Rate Limits?
- How can I know the compatibility between dimensions and metrics in YT analytics API?
- Is there any way to get this segmented retention data via YT API?
- OAuth for YouTube Analytics API via Google Cloud Functions
- Running a "supported" query on Youtube analytics v2 API returns "unsupported" response
- Which metrics will be used in the code for below requirements
- Retrieving the channel list and video wise data as well their analytics
- YT retention when clicking on an ad
- Youtube API Analytics Reports
- Get detailed watch time data from YouTube endpoints
- How to get YouTube video Views from YouTube Data API?
- How can I use the YouTube Analytics API to get revenue from shorts video based on creatorContentType?
- Get backfill reports for past dates using Youtube Analytics and Reporting API
Related Questions in YOUTUBE-ANALYTICS
- How can I know the compatibility between dimensions and metrics in YT analytics API?
- Is there any way to get this segmented retention data via YT API?
- Running a "supported" query on Youtube analytics v2 API returns "unsupported" response
- Which metrics will be used in the code for below requirements
- YT retention when clicking on an ad
- How can I avoid having to manually obtain OAuth 2.0 authorization codes for Youtube Analytics API?
- YouTube embed not tracking views
- YouTube Channel Reports API not giving metrics (views, likes...) for current day (using Targeted Queries)
- Youtube analytics reports response empty rows
- Why is subscribersGained - subscribersLost different than my current sub count?
- Is there a Next Page Token in the YouTube Analytics API
- Does YouTube Data API V3 work with YouTube Music?
- Google Oauth for Backend Java Services
- Use Youtube Analytics API without Oauth2 via Python?
- Youtube Analytics Reports Query does not match the Youtube Channels List for same video list ID given as a filter
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
As of writing (June 2021), there is no metric to gather the total number of subscribers via the YouTube Analytics API, although, as you have already noted, it is possible to collect the number of people that have subscribed and unsubscribed. There is currently no metric or dimension that allows this.
A workaround to get the total number of subscribers would be to collect all subscribers and those that have unsubscribed (using the
subscribersGainedandsubscribersLostmetrics), from when a channel was created, and subtracting the one from the other to get the total. eg. -Total number of subscribers = subscribersGained - subscribersLost