Skip to content

Instantly share code, notes, and snippets.

@nonsintetic
Last active January 19, 2024 10:57
Show Gist options
  • Star 27 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save nonsintetic/9adb5c4a07b43e098473bdc76ff259a6 to your computer and use it in GitHub Desktop.
Save nonsintetic/9adb5c4a07b43e098473bdc76ff259a6 to your computer and use it in GitHub Desktop.
PHP - Get YouTube subscriber count with Youtube API v3

How to:

Here's a 'simple' way to get the YouTube subscriber number from Google's Youtube API v3:

  1. Go to https://console.developers.google.com/apis/library

  2. Log in with your Google account.

  3. Next to the logo click on 'Project' and 'Create project'. Name it whatever you want and click on 'Create'.

  4. Wait until the project is created, the page will switch to it by itself, it will take a couple of seconds up to a minute. Once it's done it will be selected next to the logo.

  5. Once it's created and selected, click on 'Credentials' from the menu on the left.

  6. Click on 'Create Credentials' and choose 'API Key'. You can restrict it to specific IPs, or types of requests (website, android, ios etc.) if you want, it's safer that way.

  7. Copy your API KEY, you will need this in the script.

  8. Make a new PHP file on your web server and use the following code, replacing YOUR_CHANNEL_ID and API_KEY with your channel's ID (it's the code at the end of your channel's URL) and the API Key you got in step 7.

<?php
$channel_id = "YOUR_CHANNEL_ID";
$api_key = "API_KEY";
$api_response = file_get_contents('https://www.googleapis.com/youtube/v3/channels?part=statistics&id='.$channel_id.'&fields=items/statistics/subscriberCount&key='.$api_key);
$api_response_decoded = json_decode($api_response, true);
echo $api_response_decoded['items'][0]['statistics']['subscriberCount'];
  1. When you navigate to your script it will just spit out the subscriber count.

Hope it helps!

Troubleshooting:

If your server doesn't handle file_get_contents ok (some don't), you can try the CURL version of it. Paste this following function at the end of your file and replace file_get_contents in the code with curl_get_contents.

function curl_get_contents($url,$useragent='cURL',$headers=false, $follow_redirects=false,$debug=false) {
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL,$url);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
	curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
	curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
	if ($headers==true){
		curl_setopt($ch, CURLOPT_HEADER,1);
	}
	if ($headers=='headers only') {
		curl_setopt($ch, CURLOPT_NOBODY ,1);
	}
		if ($follow_redirects==true) {
	curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 
	}
	if ($debug==true) {
		$result['contents']=curl_exec($ch);
		$result['info']=curl_getinfo($ch);
	} else {
		$result=curl_exec($ch);
	}
	curl_close($ch);
	return $result;
}
@jaykepeters
Copy link

@WinsDominoes, as you probably know, that is not possible with PHP, but just Google realtime API requests/real-time javascript updates, etc, and you will figure it out. Or put it on a timer, say every second, to update the stats...

@yabberish
Copy link

I'm looking to make a subscriber count like social blade, can I do that with this?

@Zycrasion
Copy link

Mine doesn't work? i have it in PHP 7 but it doesn't show up with anything, can i please have some help?

@denvermatterhorn
Copy link

It's possible to make it real time by creating a login to your account and making an POST api call to https://www.youtube.com/youtubei/v1/creator/get_channel_dashboard

@bitmammoth
Copy link

Try this with reactphp for async calls

@PusparajPoudyal
Copy link

I need instagram follower count api. Previous api not working in 2020. Can anyone help me?

@mianusman9808
Copy link

Undefined index: items i am getting error like this how can I resolve this error i laravel
my code is
public function youtube()
{
$channel_id = '';
$api_key = '';
$api_response = $this->curl_get_contents('https://www.googleapis.com/youtube/v3/channels?part=statistics&id=' . $channel_id . '&fields=items/statistics/subscriberCount&key=' . $api_key);
$api_response_decoded = json_decode($api_response, true);
echo $api_response_decoded['items'][0]['statistics']['subscriberCount'];

}
function curl_get_contents($url,$useragent='cURL',$headers=false, $follow_redirects=false,$debug=false) {
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
    curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    if ($headers==true){
        curl_setopt($ch, CURLOPT_HEADER,1);
    }
    if ($headers=='headers only') {
        curl_setopt($ch, CURLOPT_NOBODY ,1);
    }
    if ($follow_redirects==true) {
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    }
    if ($debug==true) {
        $result['contents']=curl_exec($ch);
        $result['info']=curl_getinfo($ch);
    } else {
        $result=curl_exec($ch);
    }
    curl_close($ch);
    return $result;
}

@nonsintetic
Copy link
Author

nonsintetic commented Jan 12, 2021

mianusman9808 - add a var_dump($api_response_decoded); before the echo, see what you're getting back, maybe it's some API error or the format has changed. Haven't checked this in a while

@croner2
Copy link

croner2 commented Dec 14, 2022

hello
i use code $result = $data['items'][0]['statistics']['subscriberCount']; but subscriber Count is rounded. example 3.89M subscriber to count is 3,890,000

i need current subscriber

@soundasleep
Copy link

Thank you! Who knew trying to connect to an API could be so complicated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment