Skip to content

Instantly share code, notes, and snippets.

@nathangathright
Last active February 20, 2023 14:07
Show Gist options
  • Save nathangathright/27d61c464b3558263858e87b07bed497 to your computer and use it in GitHub Desktop.
Save nathangathright/27d61c464b3558263858e87b07bed497 to your computer and use it in GitHub Desktop.

WebFinger-esque lookup for podcasts

Example Request

GET /.well-known/webfinger?
feed=https://feeds.megaphone.fm/vergecast&
episode=74c2d4a8-350e-11ed-ac6e-af51166da149&
episode=2976ce64-49ae-11ed-a6dc-63e170f0bbd8

Example Response

{
  "feed" : "https://feeds.megaphone.fm/vergecast",
  "links" : {
    "android" : "podcastindex://subscribe/feeds.megaphone.fm/vergecast",
    "ios" : "podcastindex://subscribe/feeds.megaphone.fm/vergecast",
    "macos" : "podcastindex://subscribe/feeds.megaphone.fm/vergecast",
    "web" : "https://podcastindex.org/podcast/415434",
  },
  "episodes" : [
    {
      "guid" : "74c2d4a8-350e-11ed-ac6e-af51166da149",
      "href" : "https://podcastindex.org/podcast/415434/episode/13510297286"
    },
    {
      "guid" : "2976ce64-49ae-11ed-a6dc-63e170f0bbd8",
      "href" : "https://podcastindex.org/podcast/415434/episode/13459287006"
    }
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment