Agentic Universe publishes its curated AI coding news as two open, standards-based feeds — an RSS 2.0 feed and a JSON Feed 1.1 feed. There is no separate REST API; the feeds are the supported way to consume article data programmatically.
| Feed | URL | Format |
|---|---|---|
| RSS 2.0 | https://www.agentic-universe.net/feed.xml | application/rss+xml |
| JSON Feed 1.1 | https://www.agentic-universe.net/feed.json | application/feed+json |
Each feed returns the 50 most recent published articles (those that cleared our scoring gate and have a finished headline + summary), newest first. There are no query parameters, no pagination, and no authentication — fetch them directly from a browser, server, feed reader, or shell.
None. Both feeds are fully public. There is no API key, no OAuth, and no signed request.
Both feeds send:
Cache-Control: public, max-age=300, s-maxage=3600, stale-while-revalidate=86400max-age=300).s-maxage=3600) and revalidates in the background for up to 1 day (stale-while-revalidate=86400).Polling more often than once every few minutes just returns the cached copy — once an hour is plenty, since new articles publish on a daily cadence.
/feed.json)Conforms to JSON Feed 1.1. Each item carries a vendor extension under _agentic_universe with the category, overall score, and source name.
curl "https://www.agentic-universe.net/feed.json"{
"version": "https://jsonfeed.org/version/1.1",
"title": "Agentic Universe — AI Coding News",
"home_page_url": "https://www.agentic-universe.net",
"feed_url": "https://www.agentic-universe.net/feed.json",
"description": "Daily AI agent news: Claude Code, Cursor, MCP, agent frameworks, and the agentic coding ecosystem.",
"language": "en",
"items": [
{
"id": "https://www.agentic-universe.net/articles/abc123",
"url": "https://example.com/article",
"title": "Claude Code adds persistent background agents",
"content_text": "Anthropic has released background agents for Claude Code...",
"summary": "Anthropic launches background agents for Claude Code...",
"date_published": "2026-04-16T10:00:00.000Z",
"tags": ["claude-code", "background-agents"],
"_agentic_universe": {
"category": "Agentic Coding",
"score": 8.5,
"source": "Anthropic Blog"
}
}
]
}| Field | Meaning |
|---|---|
id | Stable permalink on our site (/articles/:id) |
url | The original publisher's article URL |
title | Our rewritten headline (falls back to the source title) |
content_text | Medium-length summary (falls back to the short summary) |
summary | Short summary |
date_published | ISO 8601 timestamp |
tags | Array of topic tags |
_agentic_universe.category | Our category label (see Categories) |
_agentic_universe.score | Overall editorial score, 0–10 |
_agentic_universe.source | Source name |
/feed.xml)Standard RSS 2.0 with an Atom self-link. Each <item> links to the original publisher; the <guid> is our stable permalink (isPermaLink="false").
curl "https://www.agentic-universe.net/feed.xml"<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Agentic Universe — AI Coding News</title>
<link>https://www.agentic-universe.net</link>
<description>Daily AI agent news: Claude Code, Cursor, MCP, agent frameworks, and the agentic coding ecosystem.</description>
<language>en</language>
<lastBuildDate>Thu, 16 Apr 2026 06:45:00 GMT</lastBuildDate>
<atom:link href="https://www.agentic-universe.net/feed.xml" rel="self" type="application/rss+xml"/>
<item>
<title><![CDATA[Claude Code adds persistent background agents]]></title>
<link>https://example.com/article</link>
<guid isPermaLink="false">https://www.agentic-universe.net/articles/abc123</guid>
<description><![CDATA[Anthropic launches background agents for Claude Code...]]></description>
<pubDate>Thu, 16 Apr 2026 10:00:00 GMT</pubDate>
<category>Agentic Coding</category>
</item>
</channel>
</rss>Every item is tagged with one of our category labels (in JSON Feed under _agentic_universe.category, in RSS under <category>):
New Models & ReleasesAgent Frameworks & ToolsAgentic CodingResearch PapersOpen SourceIndustry & BusinessInfrastructure & MLOpsTutorials & How-ToRegulation & SafetyApplications & Use CasesOpinion & AnalysisCommunity & EventsThese feeds are provided for personal and non-commercial use. If you republish or build on them, attribute Agentic Universe and link back to the original publisher (the url / <link> field always points to the source, not to us). Don't strip attribution, and don't re-host our summaries as if they were the original work.
Need a higher-volume feed, a different format, or want to discuss usage? Email us at internium.founder@gmail.com.