We’ve all been there. You’ve spent years curating the perfect YouTube feed. Your subscription list is a finely tuned machine of educational creators, guilty pleasure vloggers, niche hobbyists, and news outlets. Then, life happens. You lose access to your old Google account, you want to switch to a brand account for professional reasons, or you simply want a clean profile without losing your favorite creators.
What you need is a —a tool or method that allows you to copy subscribed channels to another YouTube account instantly. While YouTube does not offer a native "Transfer Subscriptions" button, the internet (and some clever code) has solved this problem.
Why starting over on YouTube doesn't mean losing your library. We’ve all been there
Log into your OLD YouTube account. Go to the "Subscriptions" page. Step 3: Click the extension icon. Select "Export Subscriptions" or "Get Channel IDs." The extension will crawl your entire subscription list and save a list of channel URLs to your clipboard or a .txt file.
YouTube sometimes flags rapid-fire subscribing as bot activity. Use the "Delay" feature (set to 2-3 seconds between subscriptions) to avoid a temporary ban. Method 3: The "RSS to OPML" Hack (For Power Users) Before YouTube killed public RSS feeds for channels, this was the standard. It still works, but requires an RSS reader. Then, life happens
Safety Guide: Never give your Google password to an importer tool. Always use OAuth (the "Sign in with Google" popup) so the tool never sees your password. If you trust code, this is the most reliable way to copy subscribed channels using YouTube’s v3 API.
YouTube channels have hidden RSS feeds. You export your current subs as an OPML file (a list of RSS links) and import that into a new account via a reader, then re-subscribe. While YouTube does not offer a native "Transfer
# This requires google-api-python-client old_subs = get_old_subscriptions() # List of channel IDs for channel_id in old_subs: new_account.subscriptions().insert( part="snippet", body="snippet": "resourceId": "channelId": channel_id ).execute() print(f"Subscribed to channel_id") time.sleep(1) # Rate limit avoidance Note: You will need to set up a project in Google Developer Console and enable the YouTube Data API v3. You tried the YouTube subscriptions importer, but it broke. Here is the fix.
We’ve all been there. You’ve spent years curating the perfect YouTube feed. Your subscription list is a finely tuned machine of educational creators, guilty pleasure vloggers, niche hobbyists, and news outlets. Then, life happens. You lose access to your old Google account, you want to switch to a brand account for professional reasons, or you simply want a clean profile without losing your favorite creators.
What you need is a —a tool or method that allows you to copy subscribed channels to another YouTube account instantly. While YouTube does not offer a native "Transfer Subscriptions" button, the internet (and some clever code) has solved this problem.
Why starting over on YouTube doesn't mean losing your library.
Log into your OLD YouTube account. Go to the "Subscriptions" page. Step 3: Click the extension icon. Select "Export Subscriptions" or "Get Channel IDs." The extension will crawl your entire subscription list and save a list of channel URLs to your clipboard or a .txt file.
YouTube sometimes flags rapid-fire subscribing as bot activity. Use the "Delay" feature (set to 2-3 seconds between subscriptions) to avoid a temporary ban. Method 3: The "RSS to OPML" Hack (For Power Users) Before YouTube killed public RSS feeds for channels, this was the standard. It still works, but requires an RSS reader.
Safety Guide: Never give your Google password to an importer tool. Always use OAuth (the "Sign in with Google" popup) so the tool never sees your password. If you trust code, this is the most reliable way to copy subscribed channels using YouTube’s v3 API.
YouTube channels have hidden RSS feeds. You export your current subs as an OPML file (a list of RSS links) and import that into a new account via a reader, then re-subscribe.
# This requires google-api-python-client old_subs = get_old_subscriptions() # List of channel IDs for channel_id in old_subs: new_account.subscriptions().insert( part="snippet", body="snippet": "resourceId": "channelId": channel_id ).execute() print(f"Subscribed to channel_id") time.sleep(1) # Rate limit avoidance Note: You will need to set up a project in Google Developer Console and enable the YouTube Data API v3. You tried the YouTube subscriptions importer, but it broke. Here is the fix.