Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

Is there any way to export all Youtube subscribers as a text list?

Is there ANY API, or something...?

share|improve this question

1 Answer

up vote 1 down vote accepted

YouTube Data API provides you the option to retrieve subscribers list https://developers.google.com/youtube/v3/docs/subscriptions/list

Making an authorized request on this URL you will get a JSON response with your subscribers:

https://www.googleapis.com/youtube/v3/subscriptions?part=snippet&mySubscribers=true&key={YOUR_API_KEY}

share|improve this answer
Sounds good. Can you add more information about how to use it? Add an example, please. – John ツ Jan 27 at 19:20
There are different ways of using the API. But most important thing is that you must know about basic web languages. Actually, you will get better help by YouTube API experts on Stackoverflow at stackoverflow.com/questions/ask?tags=youtube-api and also get started with YouTube API developers.google.com/youtube/getting_started – Deepak Kamat Jan 28 at 4:31
Accepting. Sorry for late accept. It's the correct solution. – John ツ May 21 at 17:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.