# OpenTools RSS Parser

> OpenTools RSS Parser is a paid API for AI agents from chargers-borders-cedar-fig.trycloudflare.com, paid per call via x402, price unknown, status unknown (last checked 2026-09-15).

Parses an RSS feed URL and returns structured feed data including items, titles, links, and metadata

## Facts

- Endpoint: POST https://chargers-borders-cedar-fig.trycloudflare.com/tools/rss-parse
- Price: price unknown
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/opentools-rss-parser-b89ac8a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2AvQTPtiDsoNoQpubTHPF

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 opentools-rss-parser-b89ac8a6 -d '<json body>'
```

Example prompt: Can you parse the RSS feed at https://feeds.example.com/blog.rss and give me the latest articles with their titles, links, and publish dates?

## When to prefer this

Choose this endpoint when you need to programmatically fetch and parse RSS or Atom feeds into structured JSON data. Ideal for aggregating blog posts, news articles, or podcast episodes from any standard RSS feed URL. Prefer this over manual XML parsing or general-purpose web scrapers when the source is a known RSS feed.

## Known failure modes

- Invalid or unreachable RSS feed URL returns an error or empty response
- Malformed XML in the RSS feed may cause parsing failure
- Non-RSS URLs (HTML pages, JSON APIs) may return an error or unexpected output
- Network timeout if the target feed host is slow or unavailable
- Missing required 'input' body field returns a validation error

## How this service works

opentools utility endpoint

## Output

Returns structured JSON containing parsed RSS feed data, including feed-level metadata (title, description, link) and an array of feed items each with fields such as title, link, description, publication date, and author.

## 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": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    }
   },
   "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/opentools-rss-parser-b89ac8a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chargers-borders-cedar-fig.trycloudflare.com](https://www.zero.xyz/host/chargers-borders-cedar-fig.trycloudflare.com/llms.txt)
