# The Stall RSS Reader — x402 Pay-Per-Call Feed Fetcher

> The Stall RSS Reader — x402 Pay-Per-Call Feed Fetcher is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Fetches and parses a public RSS or Atom feed URL and returns a structured list of feed items, paid per-call with USDC on Base via x402.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/rss-reader
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-rss-reader-x402-pay-per-call-feed-fetcher-d42b1409
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ick6ur34VFNpNCAqhptU7

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 the-stall-rss-reader-x402-pay-per-call-feed-fetcher-d42b1409
```

Example prompt: Fetch the latest 10 articles from the Hacker News RSS feed at https://news.ycombinator.com/rss and show me the titles and links.

## When to prefer this

Use this endpoint when you need to fetch and parse a public RSS or Atom feed on demand without setting up API keys or accounts, especially in agent workflows that pay per call using USDC on Base via x402. Ideal for one-off feed reads, news aggregation, and content monitoring tasks.

## Known failure modes

- Feed URL is not publicly accessible — returns an error or empty response
- URL does not point to a valid RSS or Atom feed — parse failure
- Feed server is slow or times out — timeout error
- limit parameter exceeds max of 100 — clamped or error
- Malformed XML in feed — parsing error returned

## How this service works

Fetches and parses any public RSS 2.0 or Atom 1.0 feed. Returns feed metadata (title, description, language, last updated) and structured items (title, link, 400-char summary, author, published date, GUID). Useful for monitoring news, blog posts, GitHub release notes, Reddit RSS, arXiv category feeds, or security advisories.

## Output

A structured list of up to 100 feed items parsed from the given RSS or Atom feed URL, including titles, links, publication dates, and summaries where available.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "url": "https://feeds.arstechnica.com/arstechnica/index",
   "limit": 10
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-rss-reader-x402-pay-per-call-feed-fetcher-d42b1409/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
