Skip to main content
AI Studio  add-on for Spider.
Music & Podcasts
podcasts.apple.com Verified

Apple Podcasts Scraper

Extract podcast show pages, episode listings, ratings, and chart rankings from Apple Podcasts directory. Built on spider-browser .

Get started Docs
target
podcasts.apple.com
success rate
99.9%
latency
~4ms
POST /fetch/podcasts.apple.com/
return_format
curl -X POST https://api.spider.cloud/fetch/podcasts.apple.com/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://podcasts.apple.com/",
  "status": 200,
  "data": {
    "show_title": "string",
    "author": "string",
    "rating": "string",
    "episode_title": "string",
    "duration": "string",
    "release_date": "string",
    "description": "string",
    "category": "string"
  }
}
Quick start

Extract data in minutes.

Structured JSON from podcasts.apple.com with a single POST. AI-resolved selectors, cached on the first call.

apple-podcasts-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
  stealth: 2,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://podcasts.apple.com/us/charts/top-shows/all/all");
await page.content(10000);

const data = await page.evaluate(`(() => {
  const shows = [];
  document.querySelectorAll(".we-lockup").forEach(el => {
    const title = el.querySelector("h2, h3, [data-testid*='title']")?.textContent?.trim();
    const artist = el.querySelector("[class*='subtitle'], a[href*='/artist/']")?.textContent?.trim();
    const img = el.querySelector("img, [data-testid*='artwork'] img")?.getAttribute("src");
    if (title) shows.push({ title, artist, img });
  });
  return JSON.stringify({ total: shows.length, shows: shows.slice(0, 15) });
})()`);

console.log(JSON.parse(data));
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Show titleAuthorRatingEpisode titleDurationRelease dateDescriptionCategory
Metadata

Track & album data

Extract track info, artist data, and play counts from podcasts.apple.com.

Rendering

Player handling

Handle embedded players, dynamic playlists, and streaming interfaces.

Scale

Catalog coverage

Process entire artist catalogs and podcast libraries at scale.

Related

More Music & Podcasts scrapers.

Start

Start scraping podcasts.apple.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.