API · /podcasts-api

Podcasts API

healthy 4,520 Subscribers

Search the Apple podcast directory, fetch podcast details (artwork, genre, feed, episode count) and full episode lists with audio URLs, durations and publish dates — by resolving each show's RSS feed. Great for podcast players, discovery and analytics.

api.oanor.com/podcasts-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/podcasts-api/openapi.json
/api/podcasts-api/llms.txt

Discovery: GET /api/index.json lists every API.

Podcasts API — live data on the oanor API marketplace

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
141 ms
Server probes · 24h
Subscribers
4,520
active
Total calls
57
last 7 days
status Full status page → · 9 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 1,500 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 1,500 requests/month
  • No credit card
  • Search directory + podcast details
  • 2 req/sec
Sign in to subscribe

Basic

€12.00 /month

  • 40,000 calls / month
  • 8 requests / second
  • Hard cap (429 above quota, no overage)
  • 40,000 requests/month at 8 req/sec
  • Full episode lists with audio URLs
  • RSS feed resolution included
  • Commercial use allowed
Sign in to subscribe

Pro

€55.00 /month

  • 220,000 calls / month
  • 25 requests / second
  • Hard cap (429 above quota, no overage)
  • 220,000 requests/month at 25 req/sec
  • All endpoints incl. bulk episode fetch
  • Undercuts Taddy Pro (100k/$75)
  • Email support
Sign in to subscribe

Mega

€129.00 /month

  • 750,000 calls / month
  • 60 requests / second
  • Hard cap (429 above quota, no overage)
  • 750,000 requests/month at 60 req/sec
  • Priority RSS-resolution queue
  • 99.9% uptime SLA
  • Priority support
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Apple Charts API — oanor API marketplace

Apple Charts API

Live Apple App Store, Music and Podcast charts by country, with no key. This reads Apple's own public Marketing Tools RSS feeds and returns clean JSON: the top apps (free and paid), the most-played songs and the top podcasts, ranked, for any of Apple's storefronts. The apps endpoint ranks the top free or paid iOS apps; the music endpoint ranks the most-played songs on Apple Music; the podcasts endpoint ranks the top podcasts on Apple Podcasts — each entry with its rank, title, artist or developer, artwork, genres and store link. The app-store / charts / trending-media layer for app-store optimisation (ASO), market research, media-monitoring and content tools. Distinct from the iTunes catalogue-lookup reader and the App-Store-search reader — this is the live top-charts data per country. Live from Apple; short cache only.

api.oanor.com/applecharts-api

Mixcloud API — oanor API marketplace

Mixcloud API

Mixcloud as an API — the home of long-form audio: DJ mixes, radio shows and podcasts, returned as clean JSON, no key. Search cloudcasts, users or tags; look up a user profile (followers, listens, location, picture) and their shows; get a cloudcast's full detail — play count, favourites, reposts, listener count, audio length, tags and uploader; read a show's comments; pull the trending cloudcasts for any tag or category; and list Mixcloud's categories. Live data straight from Mixcloud's public API. Distinct from track-based music APIs: Mixcloud is hour-long mixes, broadcast archives and shows — ideal for music-discovery apps, radio and DJ directories, podcast tools and audio dashboards. 8 data endpoints. Authenticated with an x-oanor-key; fair-use rate limits per plan.

api.oanor.com/mixcloud-api

Spotify API — oanor API marketplace

Spotify API

Spotify music and podcast metadata as an API — no login, no OAuth. Resolve any Spotify track, album, artist or playlist by its id, spotify: URI or open.spotify.com URL and get clean JSON: names, the canonical Spotify ids and URIs, cover art, release dates, durations, explicit flags and 30-second audio previews. Albums come back with their full track list, artists with their top tracks, and playlists with their tracks and owner. A universal resolve endpoint auto-detects the entity type from any Spotify link, and an oEmbed endpoint returns the title, thumbnail and embeddable player HTML for any Spotify URL. Live data straight from Spotify's public embed. Ideal for enriching your catalogue with Spotify ids, building "listen on Spotify" links, previewing tracks, and matching music across services. 6 data endpoints. Authenticated with an x-oanor-key; fair-use rate limits per plan.

api.oanor.com/spotify-api

iTunes API — oanor API marketplace

iTunes API

Real-time Apple iTunes catalogue data as an API — music, podcasts, ebooks and audiobooks, plus artist, album and podcast lookups, returned as clean JSON. Search songs, albums, podcasts, ebooks and audiobooks, or run a general search across any media type; look up any item by its iTunes id; fetch an artist with their albums and songs; fetch an album with its full track list; and fetch a podcast with its recent episodes. Live data with names, artists, artwork (upscaled), preview URLs, genres, prices, release dates, content ratings, track counts and podcast feed URLs. Ideal for music and podcast apps, media-catalogue and metadata enrichment, discovery and recommendation tools, and research. 12 data endpoints. Authenticated with an x-oanor-key; fair-use rate limits per plan.

api.oanor.com/itunes-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Podcasts API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Podcasts API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Podcasts API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Podcasts API cost?
Podcasts API has a free tier with 100 calls / month. Paid plans start at €12.00 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Podcasts API GDPR-compliant?
All requests to Podcasts API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/podcasts-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/podcasts-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/podcasts-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/podcasts-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.