FeedMeme Feed Locator API v1
For a few months now FeedMeme has been offering a handy feed URL locator bookmarklet and now we've decided to release the core function as an open API.
Use the FeedMeme API to quickly locate Atom, RDF or RSS feeds for any given URL (provided they have correct Auto-Discovery tags). The FeedMeme API provides a simple interface that you can query with results being returned in XML.
If you decide to take advantage of this free API we require that you provide a backlink to this website.
API URL: http://www.feedmeme.com/feed-locator-api/v1/
Parameters (GET/POST): url
The URL parameter may be passed through the GET or POST method eg:
http://www.feedmeme.com/feed-locator-api/v1/?url=http://www.instapundit.com
Successful responses will look like this:
<?xml version="1.0" encoding="utf-8" ?> <!-- generator="feedmeme.com" --> <feedmeme> <url>http://www.instapundit.com<</url> <feed_url>http://feeds.feedburner.com/instapundit/main</feed_url> <result>1</result> </feedmeme>
errors respond with the following.
<?xml version="1.0" encoding="utf-8" ?> <!-- generator="feedmeme.com" --> <feedmeme> <msg>Error message</msg> <result>0</result> </feedmeme>