# podcast-feed

> podcast-feed is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Parses a podcast RSS feed and returns show metadata plus up to 50 episodes with titles, dates, durations, audio URLs, and descriptions

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/podcast
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/podcast-feed-ecfb8774
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Yw4lXvcBouKTTrDBWMtnf

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 podcast-feed-ecfb8774
```

Example prompt: Can you parse the podcast feed for 'Lex Fridman Podcast' at https://lexfridman.com/feed/podcast/ and give me the show info plus the last 50 episodes with their titles, dates, durations, and audio download URLs?

## When to prefer this

Choose this endpoint when you need to quickly extract structured podcast metadata and episode lists from an RSS feed URL without writing an RSS parser. It abstracts away XML parsing, handles edge cases in podcast RSS formats, and delivers a clean JSON response for $0.01 per call — ideal for building podcast directories, episode dashboards, or monitoring tools.

## Known failure modes

- Invalid or unreachable feed URL returns an error
- Non-RSS/non-podcast URLs return a parsing error
- Feeds with non-standard RSS structures may have missing fields
- Private or paywalled feeds may return authentication errors
- Rate limiting or timeouts if the feed server is slow

## How this service works

Podcast feed parser: show title, author, artwork, categories and up to 50 episodes with title, date, duration, audio URL, size and description. Build podcast tools without wrangling RSS. $0.01 per feed.

## Output

Returns a structured object containing the podcast show's title, author name, artwork URL, categories, and up to 50 episodes. Each episode includes its title, publication date, duration, audio file URL, file size, and description text.

## 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",
     "properties": {}
    }
   },
   "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/podcast-feed-ecfb8774/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
