curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes \
--header 'x-rapidapi-key: <api-key>'{
"data": [
{
"id": "1loeWEN8v8pVAddWuKz33C",
"name": "AWH: Taylor Swifts Eras Tour Bonuses & Celebrity Gossip We Cant Confirm with Justin Sylvester",
"uri": "spotify:episode:1loeWEN8v8pVAddWuKz33C",
"duration": 1603369,
"description": "Today, we are in our Justin Sylvester era!! From Taylor Swifts Eras Tour bonuses...",
"htmlDescription": "<p>Today, we are in our Justin Sylvester era!! From Taylor Swifts Eras Tour bonuses</p>",
"coverArt": [
{
"url": "https://i.scdn.co/image/ab6765630000f68d94f52ca224075c6411271ad4",
"width": 64,
"height": 64
}
]
}
],
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
}
}Get episodes from a specific podcast show
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes \
--header 'x-rapidapi-key: <api-key>'{
"data": [
{
"id": "1loeWEN8v8pVAddWuKz33C",
"name": "AWH: Taylor Swifts Eras Tour Bonuses & Celebrity Gossip We Cant Confirm with Justin Sylvester",
"uri": "spotify:episode:1loeWEN8v8pVAddWuKz33C",
"duration": 1603369,
"description": "Today, we are in our Justin Sylvester era!! From Taylor Swifts Eras Tour bonuses...",
"htmlDescription": "<p>Today, we are in our Justin Sylvester era!! From Taylor Swifts Eras Tour bonuses</p>",
"coverArt": [
{
"url": "https://i.scdn.co/image/ab6765630000f68d94f52ca224075c6411271ad4",
"width": 64,
"height": 64
}
]
}
],
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
}
}API Key
Spotify podcast show URI to get episodes from
^spotify:show:[a-zA-Z0-9]+$"spotify:show:00wEJsU0XM16HnVSu4c8hd"
Offset for pagination
x >= 00
Number of results to return
1 <= x <= 30050
Was this page helpful?