# RSS / Atom Feed Reader (AmanChain)

> RSS / Atom Feed Reader (AmanChain) is a paid API for AI agents from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai, paid per call via x402, $0.00311/call, status unknown (last checked 2026-09-15).

Parses any RSS or Atom feed URL into clean, structured feed items via a pay-per-call x402 endpoint settled in USDC on Base.

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-rss-read
- Price: $0.00311/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rss-atom-feed-reader-amanchain-96aee35d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_enU6FiksDO60kaXu4Ab0d

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-reader-amanchain-96aee35d -d '<json body>'
```

Example prompt: Can you fetch and parse the RSS feed at https://feeds.arstechnica.com/arstechnica/index and give me all the article titles and links?

## When to prefer this

Choose this endpoint when you need to fetch and parse RSS or Atom feeds in a pay-per-call, keyless manner without setting up a dedicated feed aggregation service. Particularly useful for agents that occasionally need to pull feed data on demand, where setting up a full feed subscription infrastructure is overkill.

## Known failure modes

- Invalid or unreachable feed URL returns an error
- Non-RSS/Atom content at the URL causes a parse failure
- Payment insufficient or x402 handshake failure results in rejection
- Malformed XML in the feed may cause partial or failed parsing
- Rate limits or timeouts on the source feed server can cause failures

## How this service works

RSS / Atom Feed Reader: parse any RSS/Atom feed into clean items Executed deterministically by the AmanChain node against live consensus state (real blocks, pools, balances) — paid per call via x402, settled in USDC on Base. Input: JSON body {"serviceId":"aman-rss-read","request":"<input>"}. No account, no API key.

## Output

A structured list of clean feed items parsed from the provided RSS or Atom feed, each containing fields such as title, link, publication date, author, description/summary, and any other available metadata from the feed entries.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "request": {
       "type": "string",
       "description": "service input (see body example)"
      },
      "serviceId": {
       "type": "string",
       "description": "the service id, \"aman-rss-read\""
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rss-atom-feed-reader-amanchain-96aee35d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai](https://www.zero.xyz/host/preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/llms.txt)
