# RSS/Atom Feed to JSON Converter

> RSS/Atom Feed to JSON Converter is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches any RSS 2.0, Atom, or RDF feed URL and returns its contents as structured JSON with feed metadata and up to 50 parsed items.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/rss
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rss-atom-feed-to-json-converter-c6aa54a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KaiH2avEncMbWHpQMhL6Z

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability rss-atom-feed-to-json-converter-c6aa54a6
```

Example prompt: Fetch the RSS feed at https://feeds.arstechnica.com/arstechnica/index and give me the latest articles as JSON — I need the title, link, date, and summary for each item.

## When to prefer this

Use this endpoint when you need to programmatically consume RSS 2.0, Atom, or RDF feeds and receive clean, structured JSON output — particularly for agent workflows that monitor blogs, news sites, or podcasts for new content. Prefer this over raw HTTP fetch when you want parsed, normalized fields (date, author, cleaned summary) without building your own XML parser.

## Known failure modes

- Invalid or unreachable URL returns an error with no feed data
- Non-feed URLs (regular HTML pages) fail to parse as RSS/Atom
- Feed with more than 50 items silently truncates to 50
- Password-protected or paywalled feeds may return empty or partial results
- Malformed XML in the feed may cause parse errors
- Network timeouts on slow upstream servers

## How this service works

RSS/Atom feed to JSON: feed title, link and description plus up to 50 items with title, link, date, author, summary (cleaned) and categories. Works with RSS 2.0, Atom and RDF. Subscribe agents to any feed. $0.01 per fetch.

## Output

Returns a JSON object containing the feed's title, canonical link, and description, plus an array of up to 50 items each with title, link, publication date, author, cleaned plain-text summary, and an array of categories/tags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rss-atom-feed-to-json-converter-c6aa54a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
