YouTube Subscriber Count using YouTube API
To use the YouTube APIs, you need to create a project in Google Cloud platform, and obtain a API key with permission to YouTube APIs.
[{"id":"54b42d8d.cda474","type":"tab","label":"Test Playground","disabled":false,"info":""},{"id":"5018bd8e.83fd14","type":"group","z":"54b42d8d.cda474","style":{"stroke":"#999999","stroke-opacity":"1","fill":"none","fill-opacity":"1","label":true,"label-position":"nw","color":"#a4a4a4"},"nodes":["f0f17299.3736c","dc7878f9.4756c8","636e456.79b99bc","fe81d049.9fc1b","e956269d.508628","b9c02eb2.dcb6b"],"x":14,"y":259,"w":1112,"h":82},{"id":"f0f17299.3736c","type":"inject","z":"54b42d8d.cda474","g":"5018bd8e.83fd14","name":"","props":[],"repeat":"","crontab":"00 13 * * *","once":false,"onceDelay":0.1,"topic":"","x":110,"y":300,"wires":[["dc7878f9.4756c8"]]},{"id":"dc7878f9.4756c8","type":"http request","z":"54b42d8d.cda474","g":"5018bd8e.83fd14","name":"","method":"GET","ret":"obj","paytoqs":"ignore","url":"https://youtube.googleapis.com/youtube/v3/channels?part=statistics&id=UCo3jik11kHu65uQBGueaw4g&key=xxxxxxxxxx","tls":"","persist":false,"proxy":"","authType":"","x":290,"y":300,"wires":[["fe81d049.9fc1b"]]},{"id":"636e456.79b99bc","type":"debug","z":"54b42d8d.cda474","g":"5018bd8e.83fd14","name":"","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":1030,"y":300,"wires":[]},{"id":"fe81d049.9fc1b","type":"function","z":"54b42d8d.cda474","g":"5018bd8e.83fd14","name":"parse","func":"var stats = msg.payload.items[0].statistics;\nvar out = [];\nout.push({\"measurement\":\"yt_subscribers\",\"payload\":stats.subscriberCount});\nout.push({\"measurement\":\"yt_views\",\"payload\":stats.viewCount});\nout.push({\"measurement\":\"yt_videos\",\"payload\":stats.videoCount});\n\nmsg.payload = out;\n\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":470,"y":300,"wires":[["b9c02eb2.dcb6b"]]},{"id":"e956269d.508628","type":"function","z":"54b42d8d.cda474","g":"5018bd8e.83fd14","name":"process","func":"\nmsg_ = msg.payload;\n\nreturn msg_;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":800,"y":300,"wires":[["636e456.79b99bc"]]},{"id":"b9c02eb2.dcb6b","type":"split","z":"54b42d8d.cda474","g":"5018bd8e.83fd14","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":630,"y":300,"wires":[["e956269d.508628"]]}]