Get Podcast RSS Feed URL from Apple Podcasts

Description

Bookmarklet to extract RSS feed URL from Apple Podcasts

Usage

Add bookmarklet

  1. Add to bookmarks
  2. Paste snippet code into URL

Get RSS feed

  1. Go to Apple podcast show URL (i.e. Radio Rental)
  2. Click on bookmarklet

Snippet

javascript:(function(){var id=window.location.pathname.match(/id(\d+)/);if(id){fetch('https://itunes.apple.com/lookup?id='+id[1]+'&entity=podcast').then(r=>r.json()).then(d=>alert(d.results[0].feedUrl))}})();