# payai.agentstools.dev RSS/Atom/JSON Feed Parser

> payai.agentstools.dev RSS/Atom/JSON Feed Parser is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Parses a public RSS, Atom, or JSON Feed URL into a normalized list of feed items with metadata such as title, link, published date, summary, ID, and author.

## Facts

- Endpoint: GET https://payai.agentstools.dev/feed
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payai-agentstools-dev-rss-atom-json-feed-parser-8bde72e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mR0IKe0PAlBgbAs3NtqFC

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 payai-agentstools-dev-rss-atom-json-feed-parser-8bde72e7
```

Example prompt: Can you fetch and parse the RSS feed at https://feeds.arstechnica.com/arstechnica/index and give me the latest 10 articles with their titles, links, and published dates?

## When to prefer this

Use this endpoint when you need to programmatically read and normalize any public RSS, Atom, or JSON Feed URL into a structured item list. It is ideal when you want consistent fields (title, link, published, summary, author) across different feed formats without writing your own parser.

## Known failure modes

- Invalid or unreachable feed URL returns an error
- Feed URL points to non-feed content (e.g. HTML page) causing parse failure
- max_items out of range (below 1 or above 100) causes validation error
- Feed with no items returns empty item list
- Malformed or non-standard feed XML may result in partial parsing or error

## How this service works

Parse an RSS, Atom or JSON Feed URL into a normalized item list (title/link/published/summary/id/author) plus feed-level metadata.

## Output

Returns a normalized list of feed items (up to the requested max, default 20, cap 100), each containing title, link, published timestamp, summary, ID, and author, along with feed-level metadata such as the feed title and description.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Public RSS/Atom/JSON-feed URL"
      },
      "max_items": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Max items to return (default 20, cap 100)"
      }
     }
    }
   },
   "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/payai-agentstools-dev-rss-atom-json-feed-parser-8bde72e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
