# Podcast RSS Feed Parser

> Podcast RSS Feed Parser is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Parses a podcast RSS feed URL (including iTunes namespace) and returns podcast metadata plus all episode details including audio URLs and durations

## Facts

- Endpoint: GET https://api.x402node.dev/feed/podcast
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x402node-dev-421664c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t2uJ7kJ_aemmWOM1klrwJ

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 api-x402node-dev-421664c1
```

Example prompt: Can you parse the podcast RSS feed at https://feeds.simplecast.com/54nAGcIl and pull out all the episodes with their audio URLs, durations, and season/episode numbers, plus the show's author and cover image?

## When to prefer this

Use this endpoint when you need to programmatically ingest podcast feed metadata and episode lists — especially when you need iTunes-extended fields like season/episode numbers, duration, and explicit audio file URLs. Ideal for AI agents building podcast indexes, transcript pipelines, or audio content databases. Prefer this over generic RSS parsers when podcast-specific iTunes namespace fields are required.

## Known failure modes

- Invalid or unreachable RSS feed URL returns an error
- Feed URL is not a valid podcast RSS (no enclosures or iTunes namespace) resulting in empty episodes
- Feed requires authentication or is geo-blocked resulting in fetch failure
- Malformed XML in the RSS feed causing parse errors
- Payment failure (402) if USDC balance is insufficient

## How this service works

podcast rss parser, podcast feed parser, iTunes podcast feed, podcast metadata API, podcast episode extractor, podcast audio URL extractor. Parse podcast RSS feed with iTunes namespace. Returns metadata (author, image, category) plus episodes with audio_url, audio_type, duration, episode and season. For AI agents indexing podcasts. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with top-level podcast metadata (author, image URL, category) and an array of episodes each containing audio_url, audio_type, duration, episode number, and season number extracted from the iTunes RSS namespace

## 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": "Target URL (required)"
      },
      "limit": {
       "type": "string",
       "description": "Max results (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-x402node-dev-421664c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
