RSS and Atom Feeds
Subscribe to vulnerability updates via RSS or Atom feeds.
Endpoints
RSS Feed
GET /api/v1/feed/rss
GET /feed/rssAtom Feed
GET /api/v1/feed/atom
GET /feed/atomResponse
Both feeds return XML in their respective formats:
RSS Example
xml
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Vulnpatch Security Advisories</title>
<link>https://vulnpatch.dev</link>
<description>Recent security vulnerabilities from multiple sources</description>
<item>
<title>CVE-2026-24476: Shaarli XSS</title>
<link>https://nvd.nist.gov/vuln/detail/CVE-2026-24476</link>
<description>Stored XSS vulnerability in Shaarli...</description>
<pubDate>Mon, 27 Jan 2026 17:42:23 GMT</pubDate>
<guid>CVE-2026-24476</guid>
</item>
</channel>
</rss>Atom Example
xml
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Vulnpatch Security Advisories</title>
<link href="https://vulnpatch.dev"/>
<link href="https://api.vulnpatch.dev/feed/atom" rel="self"/>
<updated>2026-01-27T17:42:23Z</updated>
<entry>
<title>CVE-2026-24476: Shaarli XSS</title>
<link href="https://nvd.nist.gov/vuln/detail/CVE-2026-24476"/>
<id>CVE-2026-24476</id>
<updated>2026-01-27T17:42:23Z</updated>
<summary>Stored XSS vulnerability in Shaarli...</summary>
</entry>
</feed>Usage
Add the feed URL to your RSS reader:
- RSS:
https://api.vulnpatch.dev/feed/rss - Atom:
https://api.vulnpatch.dev/feed/atom
Use Cases
- RSS readers: Stay updated on new vulnerabilities
- Slack/Discord integrations: Post new advisories to channels
- Monitoring systems: Parse feeds for automated alerting
- Email digests: Generate periodic security summaries
Caching
Feeds are cached for 15 minutes.