NYM blog RSS/feed XML?

Hi all,

Dead simple question, does NYM provide an RSS/feed endpoint in regards to the https://nym.com/blog data path? Tried a few moves which all failed =)

Thanks,
sn

Hi @solarninja ,

No — AFAIK nym.com/blog has no RSS/Atom feed. Checked the usual paths (/rss, /feed, /feed.xml, /atom.xml, and same under /blog/…) — all 404. It’s Next.js + Strapi with no feed route.

Closest options: the forum is Discourse and does have RSS (e.g. https://forum.nym.com/c/news-announcements/33.rss for releases/announcements), and the blog’s only machine-readable index is nym.com/sitemap.xml (URLs only, no reliable dates).

Cheers

1 Like

Cool thanks, I had tried the usual as well on /blog with no luck – perhaps room for improvements? Would be neat, I’m federating such xml in a single place for my daily updates etc…

Thanks mate !!

If you want to roll your own, this is how I pull the blog:

  1. URLs from nym.com/sitemap.xml (filter /blog/…, prefix /en/ to force English).
  2. Headless-render each (Playwright/Puppeteer) — a plain fetch gives only the RSC shell, the body is client-rendered:
await p.goto(url, { waitUntil: 'networkidle' });
const item = await p.evaluate(() => ({
  title: document.title.replace(/ \| Nym$/, ''),
  text: (document.querySelector('main') || document.body).innerText,
}));
  1. Detect new posts by diffing the sitemap URL set between runs (ignore lastmod — it’s the rebuild date, not publish). Render the new ones, emit RSS, cron it.