Get podcast episodes
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes"
headers = {"x-rapidapi-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};
fetch('https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-rapidapi-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"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>",
"releaseDate": {
"isoString": "2025-12-18T08:00:00Z",
"precision": "MINUTE"
},
"coverArt": [
{
"url": "https://i.scdn.co/image/ab6765630000f68d94f52ca224075c6411271ad4",
"width": 64,
"height": 64
}
],
"playability": {
"playable": true
}
}
],
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
}
}{
"message": "Bad request"
}{
"message": "Invalid API key"
}{
"message": "You are not subscribed to this API, please subscribe before using"
}{
"success": false,
"message": "Internal Server Error",
"status_code": 500,
"cost": 0,
"explain": "Internal Server Error"
}Podcasts
Get podcast episodes
Get episodes from a specific podcast show
GET
/
api
/
v1
/
podcasts
/
episodes
Get podcast episodes
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes"
headers = {"x-rapidapi-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};
fetch('https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-rapidapi-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://spotify-api31.p.rapidapi.com/api/v1/podcasts/episodes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"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>",
"releaseDate": {
"isoString": "2025-12-18T08:00:00Z",
"precision": "MINUTE"
},
"coverArt": [
{
"url": "https://i.scdn.co/image/ab6765630000f68d94f52ca224075c6411271ad4",
"width": 64,
"height": 64
}
],
"playability": {
"playable": true
}
}
],
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
}
}{
"message": "Bad request"
}{
"message": "Invalid API key"
}{
"message": "You are not subscribed to this API, please subscribe before using"
}{
"success": false,
"message": "Internal Server Error",
"status_code": 500,
"cost": 0,
"explain": "Internal Server Error"
}Authorizations
API Key
Query Parameters
Spotify podcast show URI to get episodes from
Pattern:
^spotify:show:[a-zA-Z0-9]+$Example:
"spotify:show:00wEJsU0XM16HnVSu4c8hd"
Offset for pagination
Required range:
x >= 0Example:
0
Number of results to return
Required range:
1 <= x <= 300Example:
50
Was this page helpful?
⌘I

