MisarMisar Docs
MisarMailMisar.BlogMisarReachMisarPostMisar.DevMisarSEOMisar PlatformMisar SSO
API Reference

RSS Feed

Access MisarBlog article feeds in RSS 2.0 format for syndication, feed readers, and content pipelines.

Feeds

MisarBlog publishes RSS 2.0 feeds as public page routes on the site domain — no API key required. There are two feeds:

FeedURLContents
Global latesthttps://www.misar.blog/feed.xmlThe 50 most recently published articles across all writers
Per-writerhttps://www.misar.blog/@{username}/feed.xmlA single writer's published articles

Custom domains

A writer on a custom domain also serves their feed at https://{custom-domain}/feed.xml.

Both return 200 OK with Content-Type: application/rss+xml; charset=utf-8 and are cached for one hour. There are no query parameters — request the URL as-is.

Served from the app origin

RSS feeds are page routes served directly by the MisarBlog app at www.misar.blog (or a writer's custom domain), not through the api.misar.io/blog REST gateway.

Response

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>mrgulshanyadav on MisarBlog</title>
    <link>https://www.misar.blog/@mrgulshanyadav</link>
    <description>Latest articles by mrgulshanyadav</description>
    <language>en</language>
    <item>
      <title>My First Article</title>
      <link>https://www.misar.blog/@mrgulshanyadav/articles/my-first-article</link>
      <guid isPermaLink="true">https://www.misar.blog/@mrgulshanyadav/articles/my-first-article</guid>
      <pubDate>Mon, 21 Apr 2026 10:00:00 +0000</pubDate>
      <description>A brief summary of the article.</description>
      <author>mrgulshanyadav</author>
    </item>
  </channel>
</rss>

Examples

# Global feed (newest 50 articles across the platform)
curl "https://www.misar.blog/feed.xml"

# A single writer's feed
curl "https://www.misar.blog/@mrgulshanyadav/feed.xml"

Feed Reader URLs

Add either of the following to your RSS reader:

FeedURL
Global latesthttps://www.misar.blog/feed.xml
Writer's feedhttps://www.misar.blog/@{username}/feed.xml