# skill-audit RSS Feed Reader

> skill-audit RSS Feed Reader is a paid API for AI agents from eltociear-skill-audit.hf.space, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Fetches and parses an RSS feed URL, returning structured post metadata including titles, summaries, links, and publish dates

## Facts

- Endpoint: POST https://eltociear-skill-audit.hf.space/rss
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/skill-audit-rss-feed-reader-15a8ec9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KFxhO9gdM28NwE4CWSPqH

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 skill-audit-rss-feed-reader-15a8ec9d -d '<json body>'
```

Example prompt: Can you fetch the latest posts from https://example.com/feed.xml and give me the titles, summaries, and links for each item?

## When to prefer this

Use this endpoint when you need to programmatically fetch and parse an RSS or Atom feed URL into clean structured JSON, especially if you want titles, summaries, links, and timestamps without building your own XML parser. It is well-suited for lightweight feed monitoring, content aggregation, or building reading digests. Note: the service name and domain suggest this is primarily a security audit tool, so this /rss endpoint may be an auxiliary utility rather than the core offering — treat with some caution regarding reliability.

## Known failure modes

- Invalid or unreachable feed URL returns an error response
- Non-RSS/Atom URL may fail to parse or return empty items
- Private or paywalled feeds may return no content
- Malformed XML in the feed may cause parsing errors
- Network timeouts if the feed host is slow to respond

## How this service works

Parse an RSS/Atom feed into structured items (title, link, published, summary) — or auto-discover the feed from a site URL

## Output

Returns a JSON object containing the feed title, the feed URL, the format (rss), a count of items, and an array of items each with a link, title, summary, and published timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Feed URL, or a site URL to auto-discover its feed"
  },
  "max_items": {
   "type": "integer",
   "description": "Cap on items (default 50)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "items": [
   {
    "link": "https://example.com/post",
    "title": "Post",
    "summary": "…",
    "published": "2026-07-20T10:00:00Z"
   }
  ],
  "title": "Example Blog",
  "format": "rss",
  "feed_url": "https://example.com/feed.xml"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/skill-audit-rss-feed-reader-15a8ec9d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-skill-audit.hf.space](https://www.zero.xyz/host/eltociear-skill-audit.hf.space/llms.txt)
