Skip to content

Export YouTube Subscriptions

Google Takeout

The export will be provided as a CSV (comma separated values) file that will contain the following types of data.

  • Channel ID
  • Channel URL
  • Channel Title

Instructions

  1. Login to Google via Google Takeout using a web browser.
  2. Click on "All data included", then on "Deselect all", then select only "subscriptions" and click "OK".
  3. Click on "Next step" and then on "Create export".
  4. Click on the "Download" button after it appears, this may take some time.
  5. Extract the file "subscriptions.csv" from the downloaded archive (e.g. takeout-20220524T222420Z-001.zip, takeout-20220524T222420Z-001.tar.gz).

    The "subscriptions.csv" within the archive is located under "/YouTube and YouTube music/subscriptions/subscriptions.csv".

  6. Open "subscriptions.csv" in the desired application (e.g. LibreOffice Calc).

Manual (JavaScript)

Thanks to Clément 5629 for posting this type of solution. I've altered the output to be in CSV.

The export will be provided via the JavaScript console as a text message/object enclosed within double quotes. Within the double quotes the data is formatted as a CSV (comma separated values) and contains the following types of data.

  • Channel URL
  • Channel Title

I wish I could have figured out a way to also include the channel ID for each channel. Unfortunately as far as I can tell the web page does not contain the channel IDs.

Instructions

  1. Login to YouTube.com/feed/channels using a desktop web browser.
  2. Scroll down to the end of the page until all subscriptions are loaded.
  3. Open Web Developer Tools console by pressing, CTRL+SHIFT+K (Firefox) or CTRL+SHIFT+I (Chrome/Chromium).
  4. Copy the bellow JavaScript code to the clipboard.
    $$("#main-link.channel-link").reduce((str, el)=>str+'\n'+el.href+','+el.querySelector("#main-link #text").innerText,'Channel URL,Channel title');
    
  5. Paste the copied JavaScript code into the input field at the bottom of the screen.
  6. Right mouse click on the outputted results and click on "Copy Object" or "Copy Message".
  7. Paste your subscriptions into a desired text editor.
  8. Remove the enclosed double quotes from the first line and last line.
  9. Save as "subscriptions.csv".

Note

If using macOS use the Command key in place of the CTRL key.

Example of Data Output

Google Takeout

Channel ID,Channel URL,Channel title
UCg6gPGh8HU2U01vaFCAsvmQ,http://www.youtube.com/channel/UCg6gPGh8HU2U01vaFCAsvmQ,Chris Titus Tech
UCVls1GmFKf6WlTraIb_IaJg,http://www.youtube.com/channel/UCVls1GmFKf6WlTraIb_IaJg,DistroTube
UCLx053rWZxCiYWsBETgdKrQ,http://www.youtube.com/channel/UCLx053rWZxCiYWsBETgdKrQ,LGR

Manual (JavaScript)

"Channel URL,Channel title
https://www.youtube.com/c/ChrisTitusTech,Chris Titus Tech
https://www.youtube.com/channel/UCVls1GmFKf6WlTraIb_IaJg,DistroTube
https://www.youtube.com/lazygamereviews,LGR
https://www.youtube.com/channel/UCUQo7nzH1sXVpzL92VesANw,DIY Perks"

With double quotes removed.

Channel URL,Channel title
https://www.youtube.com/c/ChrisTitusTech,Chris Titus Tech
https://www.youtube.com/channel/UCVls1GmFKf6WlTraIb_IaJg,DistroTube
https://www.youtube.com/lazygamereviews,LGR
https://www.youtube.com/channel/UCUQo7nzH1sXVpzL92VesANw,DIY Perks