# 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 and parses an RSS or Atom feed URL into a clean, structured JSON list of feed items.

## Facts

- Endpoint: POST https://api.24klabs.ai/api/v1/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-69ef9495
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DQdb6NNn09Z12i51vJb6V

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-69ef9495 -d '<json body>'
```

Example prompt: Can you fetch and parse the RSS feed at https://hnrss.org/frontpage and give me a clean list of the latest Hacker News stories with their titles, links, and publish dates?

## When to prefer this

Choose this endpoint when you need to programmatically consume an RSS or Atom feed and receive clean, structured JSON output without building your own XML parser. Ideal for agents that need to monitor blogs, news sites, or podcasts on demand. Prefer it over generic web scraping when the source publishes a feed, as it is faster and more reliable.

## Known failure modes

- Invalid or malformed feed URL returns an error
- Feed URL is unreachable or returns a non-200 HTTP status
- URL points to HTML or non-feed content and cannot be parsed
- Feed is password-protected or behind a paywall
- Malformed XML in the feed causes parse failure
- Empty feed with zero items returns an empty array

## 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 structured fields such as title, link/URL, publication date, author, description or summary, and any additional metadata present in the original RSS or Atom feed.

## 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-69ef9495/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)
