Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-apple-podcasts Install via the SkillsCat registry.
SKILL.md
Apple Podcasts
Overview
Apple Podcasts content platform — search, browse, and get details for podcasts and episodes via the AMP API.
Workflows
Search and explore a podcast
searchPodcasts(term)→ results with podcastidgetPodcast(id, include=["episodes"])→ full details with episode list
Autocomplete search
getSearchSuggestions(term)→ suggestions with podcast/episode matchessearchPodcasts(term)→ full search results
Browse top charts
getTopCharts(name="search-landing")→ editorial groupings with featured podcasts
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchPodcasts | search by keyword | term | id, name, artistName, artwork, url | entry point |
| getPodcast | podcast detail + episodes | id ← searchPodcasts | name, description, artwork, feedUrl, genreNames, episodes (via include) | set include=episodes for episode list |
| getSearchSuggestions | autocomplete | term | searchTerm, displayTerm, content | prefix-based suggestions |
| getTopCharts | browse charts | name (optional) | editorial groupings, featured podcasts | name=search-landing for main charts |
Quick Start
# Search podcasts
openweb apple-podcasts exec searchPodcasts '{"term":"technology"}'
# Get podcast details with episodes
openweb apple-podcasts exec getPodcast '{"id":"917918570","extend":["editorialArtwork","feedUrl","userRating"],"include":["episodes"],"limit[episodes]":10}'
# Autocomplete suggestions
openweb apple-podcasts exec getSearchSuggestions '{"term":"tech"}'
# Top charts
openweb apple-podcasts exec getTopCharts '{"name":"search-landing"}'