Podcast Feed Parser API — Episodes as JSON from Any RSS avatar

Podcast Feed Parser API — Episodes as JSON from Any RSS

Pricing

$20.00 / 1,000 feed parseds

Go to Apify Store
Podcast Feed Parser API — Episodes as JSON from Any RSS

Podcast Feed Parser API — Episodes as JSON from Any RSS

Podcast RSS parser API. Input: feedUrls (podcast RSS URLs). Output: JSON episodes — title, audio enclosure URL, duration, publish date, season/episode numbers — plus show metadata from iTunes tags. Pay-per-result: $0.02 per feed parsed, no subscription.

Pricing

$20.00 / 1,000 feed parseds

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Podcast Feed Parser

Turn any podcast RSS feed into clean, structured JSON — show metadata plus every episode with its direct audio URL.

Live on the Apify Store — run it instantly, or call it as an agent tool via Apify MCP.

What you get

  • Show metadata — title, author, iTunes category, cover image, language, explicit flag, description.
  • Per-episode data — title, direct audioUrl (enclosure) + MIME type + byte length, duration normalized to seconds, ISO-8601 publish date, season / episode numbers, episode type, GUID, summary, link.
  • Bulk mode — parse one feed or many in a single run (urls array).
  • Robust parsing of standard RSS + iTunes podcast tags via fast-xml-parser.

Input

{
"url": "https://feeds.simplecast.com/54nAGcIl",
"maxItems": 50
}

Or parse several feeds at once:

{
"urls": [
"https://feeds.simplecast.com/54nAGcIl",
"https://feeds.megaphone.fm/vergecast"
],
"maxItems": 25
}

Output

One dataset item per feed:

{
"feedUrl": "https://feeds.simplecast.com/54nAGcIl",
"showTitle": "The Daily Tech",
"author": "Example Media",
"category": "Technology",
"explicit": false,
"language": "en-us",
"image": "https://image.simplecastcdn.com/.../cover.jpg",
"link": "https://example.com",
"description": "A daily look at the world of technology.",
"episodeCount": 50,
"totalItemsInFeed": 312,
"episodes": [
{
"title": "Episode 312 — The Future of AI",
"audioUrl": "https://cdn.simplecast.com/audio/.../ep312.mp3",
"audioType": "audio/mpeg",
"audioLength": 48210432,
"durationSec": 3012,
"publishedAt": "2026-06-20T09:00:00.000Z",
"season": 5,
"episode": 312,
"episodeType": "full",
"guid": "abc-123",
"summary": "Today we dig into where AI is headed...",
"link": "https://example.com/ep312"
}
]
}

Pricing

Pay-per-event: $0.02 per feed parsed. No subscription.