# RSS & Atom Feed Parser API

> RSS & Atom Feed Parser API is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Parses any RSS 2.0 or Atom 1.0 feed URL and returns structured channel metadata plus items array as JSON

## Facts

- Endpoint: GET https://api.x402node.dev/feed/parse
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x402node-dev-f7d9fd34
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MjLClY2Xk9JvCqXoNBwLb

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 api-x402node-dev-f7d9fd34
```

Example prompt: Can you fetch and parse the Hacker News front page RSS feed at https://hnrss.org/frontpage and give me the latest 20 items with their titles, links, and descriptions?

## When to prefer this

Use this endpoint when you need to ingest content from any standard RSS 2.0 or Atom 1.0 feed URL — especially for AI agent pipelines monitoring news, blogs, or content aggregation. Prefer this over scraping when a site provides an RSS/Atom feed. It handles both formats and returns clean JSON without requiring your own XML parser.

## Known failure modes

- Invalid or unreachable feed URL returns an error
- Non-RSS/Atom XML at the URL causes a parse failure
- Malformed XML feed may return partial data or error
- Network timeout if the feed host is slow
- Limit parameter out of range may return default count or error
- HTTPS feeds with invalid certificates may fail to fetch

## How this service works

rss feed parser, rss parser, parse rss feed, rss feed parse, parse rss, rss to json, atom feed parser, parse atom feed, RSS 2.0 parser, Atom 1.0 parser, xml feed parser, feed parser API, rss feed reader, feed aggregator. Parse any RSS 2.0 or Atom feed URL. Returns channel/feed metadata (title, link, description, language) and items array. Use url param For AI agents monitoring news, blogs, content feeds. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object containing channel/feed metadata (title, link, description, language) and an array of feed items, each with title, link, description, publication date, and other available fields from the RSS or Atom XML.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Target URL (required)"
      },
      "limit": {
       "type": "string",
       "description": "Max results (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-x402node-dev-f7d9fd34/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
