feed-fetcher

Returns the RSS feed associated with the given URL

Enter an URL and press "Fetch Feed" to see all feeds (if any) found associated with that page.


Alternatively, you can navigate to https://feed-fetcher.cluster.fun/?url=YOUR_URL_HERE and your browser will redirect to the associated feed URL if found.

Calling as an API:

If you set the Content-Type request header to application/json the response will return as a JSON array of all found feed URLs. If no feeds are found an empty array will be returned and the response status code will be 404. If multiple feeds are found all will be returned in the array with a response status code of 300.

✨ curl -H "Content-Type: application/json" https://feed-fetcher.cluster.fun/\?url\=https://marcusnoble.co.uk
HTTP/1.1 200 OK
Date: Sun, 21 Mar 2021 07:24:37 GMT
Content-Type: application/json
Content-Length: 38

[
    "https://marcusnoble.co.uk/feed.xml"
]
        

Source code available on GitHub, GitLab, Bitbucket & my own Gitea server.