You can use the API key, make sure that Google plus the visibility of subscribers should be publicly available.
try the script: https://jsfiddle.net/himstar/j4932w0s/
var profileid = '100520061367519307358'; var apikey = 'AIzaSyAqlZ1MJSGXMSs8q5WbfvLpZTGJeHLVc2w'; var url = 'https://www.googleapis.com/plus/v1/people/' + profileid + '?key=' + apikey; $.ajax({ type: "GET", dataType: "json", url: url, success: function (data) { var googlefollowcount = data.circledByCount; $(".googlefollowercount").html(googlefollowcount); } });
source share