# Santos RSS/Atom/JSON Feed Parser

> Santos RSS/Atom/JSON Feed Parser is a paid API for AI agents from api.santosautomation.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Fetches and parses a public RSS 2.0, Atom, or JSON feed URL and returns structured feed metadata and item list as JSON

## Facts

- Endpoint: GET https://api.santosautomation.com/v1/feed
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/santos-rss-atom-json-feed-parser-21f98b3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FI8kbyY-_IHi2flxEaleJ

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 santos-rss-atom-json-feed-parser-21f98b3e
```

Example prompt: Can you fetch and parse the RSS feed at https://feeds.arstechnica.com/arstechnica/index and give me the list of latest article titles, authors, and summaries?

## When to prefer this

Choose this endpoint when you need to quickly fetch and normalize a public RSS, Atom, or JSON feed URL into structured JSON items. It is ideal for content aggregation, monitoring blog or podcast feeds, or when you need feed item metadata (title, author, summary, date) without building your own feed parser. It is not suitable for auditing websites for AI readiness, SEO, or security — despite the brand name suggesting that; this specific endpoint is a feed reader.

## Known failure modes

- Invalid or non-feed URL returns an error — URL must point to a valid RSS 2.0, Atom, or JSON feed
- Private or authentication-required feeds cannot be fetched
- Malformed feed XML/JSON may result in parse errors or incomplete data
- Redirects exceeding limits may fail to resolve to the final feed URL
- Non-HTTP/HTTPS URLs (e.g. FTP) are not supported

## How this service works

Audit any website for AI Agent Readiness, MCP, llms.txt, OpenAPI, SEO, accessibility and security. Structured JSON with evidence and prioritized fixes.

## Output

A structured JSON object containing feed metadata (title, description, link, feed URL, format) and an array of items each with id, URL, title, author, summary, and published date, plus item count and schema version.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Public HTTP or HTTPS URL of an RSS 2.0, Atom, or JSON feed."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com/feed.xml",
  "feed": {
   "link": "https://example.com",
   "title": "Example Blog",
   "feed_url": "https://example.com/feed.xml",
   "description": "All the examples"
  },
  "items": [
   {
    "id": "https://example.com/posts/1",
    "url": "https://example.com/posts/1",
    "title": "Hello World",
    "author": "Alice",
    "summary": "The first post.",
    "published": "Mon, 01 Jan 2024 00:00:00 GMT"
   }
  ],
  "format": "rss2",
  "final_url": "https://example.com/feed.xml",
  "item_count": 1,
  "schema_version": "1.0.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/santos-rss-atom-json-feed-parser-21f98b3e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.santosautomation.com](https://www.zero.xyz/host/api.santosautomation.com/llms.txt)
