/v1/podcasts
Top podcasts chart
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/applecharts-api/v1/podcasts" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/applecharts-api/v1/podcasts", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/applecharts-api/v1/podcasts");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/applecharts-api/v1/podcasts",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"feed": "top",
"note": "The top podcasts on Apple Podcasts for a country, ranked — each with its rank, title, publisher, genres, artwork and link. Pass country (storefront code, default us). The live Apple Podcasts chart.",
"count": 25,
"title": "Top Shows",
"source": "Apple",
"country": "us",
"updated": "Sun, 14 Jun 2026 17:03:37 +0000",
"podcasts": [
{
"id": "1200361736",
"url": "https://podcasts.apple.com/us/podcast/the-daily/id1200361736",
"kind": "podcasts",
"name": "The Daily",
"rank": 1,
"artist": "The New York Times",
"genres": [
"News"
],
"artwork": "https://is1-ssl.mzstatic.com/image/thumb/Podcasts221/v4/ab/64/66/ab6466a9-9a7d-e20e-7a3d-bc5be37d29ce/mza_15084852813176276273.jpg/100x100bb.png",
"release_date": null,
"content_rating": null
},
{
"id": "1464919521",
"url": "https://podcasts.apple.com/us/podcast/dateline-nbc/id1464919521",
"kind": "podcasts",
"name": "Dateline NBC",
"rank": 2,
"artist": "NBC News",
"genres": [
"True Crime",
"News"
],
"artwork": "https://is1-ssl.mzstatic.com/image/thumb/Podcasts115/v4/8c/00/7a/8c007a42-e550-0214-d4cb-b59cd7edf194/mza_5305664083935674472.jpeg/100x100bb.png",
"release_date": null,
"content_rating": null
},
{
"id": "1322200189",
"url": "https://podcasts.apple.com/us/podcast/crime-junkie/id1322200189",
"kind": "podcasts",
"name": "Crime Junkie",
"rank": 3,
"artist": "Audiochuck",
"genres": [
"True Crime"
],
"artwork": "https://is1-ssl.mzstatic.com/image/thumb/Podcasts126/v4/8c/35/04/8c350430-2fbf-98d0-0a25-00b76550ffeb/mza_13445204151221888086.jpg/100x100bb.png",
"release_date": null,
"content_rating": null
},
{
"id": "360084272",
"url": "https://podcasts.apple.com/us/podcast/the-joe-rogan-experience/id360084272",
"kind": "podcasts",
"name": "The Joe Rogan Experience",
"rank": 4,
"artist": "Joe Rogan",
"genres": [
"Comedy"
],
"artwork": "https://is1-ssl.mzstatic.com/image/thumb/Podcasts221/v4/72/3d/01/723d010a-33a9-d8ea-d56d-5771a172b19b/mza_1507880459444621566.jpg/100x100bb.png",
"release_date": null,
"content_rating": "Explict"
},
…