# 24K Labs RSS Feed Parser

> 24K Labs RSS Feed Parser is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Fetches a remote RSS or Atom feed URL and returns its items as a clean, structured JSON list.

## Facts

- Endpoint: POST https://api.24klabs.ai/api/rss-parse
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/24k-labs-rss-feed-parser-0a2ef3aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Cf1R6mlyG1vZPsat9AJL

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 24k-labs-rss-feed-parser-0a2ef3aa -d '<json body>'
```

Example prompt: Fetch the RSS feed at https://feeds.arstechnica.com/arstechnica/index and give me a clean JSON list of the latest articles with their titles, links, and publication dates.

## When to prefer this

Choose this endpoint when you need to programmatically ingest an RSS or Atom feed URL and receive clean, normalized JSON — especially in agent workflows where downstream processing expects structured data rather than raw XML. Ideal for content aggregation, monitoring pipelines, newsletter generation, or any scenario where a feed URL is known and items need to be extracted without writing a custom XML parser.

## Known failure modes

- Invalid or malformed feed URL returns an error response
- Target feed server is unreachable or returns a non-200 HTTP status
- URL points to non-feed content (e.g. HTML page) causing a parse failure
- Feed XML is malformed or non-standard and cannot be parsed
- Feed requires authentication or is behind a paywall
- Rate limiting or timeout on the remote feed server

## How this service works

Fetch and parse an RSS or Atom feed into a clean JSON list of items.

## Output

A JSON array of feed items, each containing fields such as title, link, publication date, description/summary, and potentially author and categories — normalized from the raw RSS or Atom XML into a clean, consistently structured format.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/24k-labs-rss-feed-parser-0a2ef3aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
