https://github.com/ListenNotes/podcast-api-python
The Official Python library for the Listen Notes Podcast API
https://github.com/ListenNotes/podcast-api-python
api podcast podcast-search python searchengine
Last synced: about 1 year ago
JSON representation
The Official Python library for the Listen Notes Podcast API
- Host: GitHub
- URL: https://github.com/ListenNotes/podcast-api-python
- Owner: ListenNotes
- License: mit
- Created: 2021-04-26T16:36:51.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-17T18:57:17.000Z (about 1 year ago)
- Last Synced: 2025-03-17T19:41:16.541Z (about 1 year ago)
- Topics: api, podcast, podcast-search, python, searchengine
- Language: Python
- Homepage: https://www.podcastapi.com/
- Size: 821 KB
- Stars: 53
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Podcast API Python Library
[](https://github.com/ListenNotes/podcast-api-python/actions/workflows/python.yml) [](https://pypi.org/project/podcast-api/)
The Podcast API Python library provides convenient access to the [Listen Notes Podcast API](https://www.listennotes.com/podcast-api/) from
applications written in the Python language.
Simple and no-nonsense podcast search & directory API. Search the meta data of all podcasts and episodes by people, places, or topics. It's the same API that powers [the best podcast search engine Listen Notes](https://www.listennotes.com/).
If you have any questions, please contact [hello@listennotes.com](hello@listennotes.com?subject=Questions+about+the+Python+SDK+of+Listen+API)
**Table of Contents**
- [Podcast API Python Library](#podcast-api-python-library)
- [Installation](#installation)
- [Requirements](#requirements)
- [Usage](#usage)
- [Handling exceptions](#handling-exceptions)
- [API Reference](#api-reference)
- [Full-text search](#full-text-search)
- [Typeahead search](#typeahead-search)
- [Fetch detailed meta data and episodes for a podcast by id](#fetch-detailed-meta-data-and-episodes-for-a-podcast-by-id)
- [Fetch detailed meta data for an episode by id](#fetch-detailed-meta-data-for-an-episode-by-id)
- [Fetch a list of supported languages for podcasts](#fetch-a-list-of-supported-languages-for-podcasts)
- [Fetch a list of podcast genres](#fetch-a-list-of-podcast-genres)
- [Fetch a list of best podcasts by genre](#fetch-a-list-of-best-podcasts-by-genre)
- [Fetch a list of supported countries/regions for best podcasts](#fetch-a-list-of-supported-countriesregions-for-best-podcasts)
- [Fetch recommendations for a podcast](#fetch-recommendations-for-a-podcast)
- [Fetch recommendations for an episode](#fetch-recommendations-for-an-episode)
- [Batch fetch basic meta data for episodes](#batch-fetch-basic-meta-data-for-episodes)
- [Batch fetch basic meta data for podcasts](#batch-fetch-basic-meta-data-for-podcasts)
- [Fetch a random podcast episode](#fetch-a-random-podcast-episode)
- [Fetch a curated list of podcasts by id](#fetch-a-curated-list-of-podcasts-by-id)
- [Fetch curated lists of podcasts](#fetch-curated-lists-of-podcasts)
- [Submit a podcast to Listen Notes database](#submit-a-podcast-to-listen-notes-database)
- [Request to delete a podcast](#request-to-delete-a-podcast)
- [Fetch a playlist's info and items (i.e., episodes or podcasts).](#fetch-a-playlists-info-and-items-ie-episodes-or-podcasts)
- [Fetch a list of your playlists.](#fetch-a-list-of-your-playlists)
- [Fetch trending search terms](#fetch-trending-search-terms)
- [Fetch related search terms](#fetch-related-search-terms)
- [Spell check on a search term](#spell-check-on-a-search-term)
- [Fetch audience demographics for a podcast](#fetch-audience-demographics-for-a-podcast)
- [Fetch podcasts by a publisher's domain name](#fetch-podcasts-by-a-publishers-domain-name)
- [Find individual episodes by searching for their titles](#find-individual-episodes-by-searching-for-their-titles)
## Installation
Install [the official PIP package](https://pypi.org/project/podcast-api/) of the Listen Notes Podcast API:
```sh
pip install --upgrade podcast-api
```
You can also install from source:
```sh
make && source venv/bin/activate
```
### Requirements
- Python 3.7+
## Usage
The library needs to be configured with your account's API key which is
available in your [Listen API Dashboard](https://www.listennotes.com/podcast-api/dashboard/#apps). Set `api_key` to its
value:
```python
from listennotes import podcast_api
api_key = 'a6a1f7ae6a4a4cf7a208e5ba********'
client = podcast_api.Client(api_key=api_key)
response = client.search(q='star wars')
print(response.json())
```
If `api_key` is None, then we'll connect to a [mock server](https://www.listennotes.com/podcast-api/tutorials/#faq0) that returns fake data for testing purposes.
### Handling exceptions
Unsuccessful requests raise exceptions. The class of the exception will reflect
the sort of error that occurred.
| Exception Class | Description |
| ------------- | ------------- |
| AuthenticationError | wrong api key or your account is suspended |
| APIConnectionError | fail to connect to API servers |
| InvalidRequestError | something wrong on your end (client side errors), e.g., missing required parameters |
| RateLimitError | for FREE plan, exceeding the quota limit; or for all plans, sending too many requests too fast and exceeding the rate limit |
| NotFoundError | endpoint not exist, or podcast / episode not exist |
| PodcastApiError | something wrong on our end (unexpected server errors) |
All exception classes can be found in [this file](https://github.com/ListenNotes/podcast-api-python/blob/main/listennotes/errors.py).
And you can see some sample code [here](https://github.com/ListenNotes/podcast-api-python/blob/main/examples/sample.py#L17).
## API Reference
Each function is a wrapper to send an HTTP request to the corresponding endpoint on the
[API Docs](https://www.listennotes.com/api/docs/).
### Full-text search
Function Name: **search**
Full-text search on episodes, podcasts, or curated lists of podcasts.
Use the `offset` parameter to paginate through search results.
The FREE plan allows to see up to 30 search results (or `offset` < 30) per query.
The PRO plan allows to see up to 300 search results (or `offset` < 300) per query.
The ENTERPRISE plan allows to see up to 10,000 search results (or `offset` < 10000) per query.
Example:
```python
from listennotes import podcast_api
# If api_key is None, the sdk will connect to a mock server that'll
# return fake data for testing purpose
api_key = 'a6a1f7ae6a4a4cf7a208e5ba********'
client = podcast_api.Client(api_key=api_key)
response = client.search(
q='star wars', sort_by_date=1, only_in='title,description')
print(response.json())
```
See all available parameters on the [API Docs page](https://www.listennotes.com/api/docs/#get-api-v2-search).
Click to see example response
```json
{
"took": 0.133,
"count": 10,
"total": 8993,
"results": [
{
"id": "ea09b575d07341599d8d5b71f205517b",
"rss": "https://theroughcut.libsyn.com/rss",
"link": "http://theroughcutpod.com/?p=786&utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/ea09b575d07341599d8d5b71f205517b/",
"image": "https://production.listennotes.com/podcasts/the-rough-cut-matt-feury-YMha8DxnUbc-53MLh7NpAwm.1400x1400.jpg",
"podcast": {
"id": "8758da9be6c8452884a8cab6373b007c",
"image": "https://production.listennotes.com/podcasts/the-rough-cut-matt-feury-YMha8DxnUbc-53MLh7NpAwm.1400x1400.jpg",
"genre_ids": [
264,
68
],
"thumbnail": "https://production.listennotes.com/podcasts/the-rough-cut-matt-feury-DEkF_8ybj6A-53MLh7NpAwm.300x300.jpg",
"listen_score": 40,
"title_original": "The Rough Cut",
"listennotes_url": "https://www.listennotes.com/c/8758da9be6c8452884a8cab6373b007c/",
"title_highlighted": "The Rough Cut",
"publisher_original": "Matt Feury",
"publisher_highlighted": "Matt Feury",
"listen_score_global_rank": "2%"
},
"itunes_id": 1471556007,
"thumbnail": "https://production.listennotes.com/podcasts/the-rough-cut-matt-feury-DEkF_8ybj6A-53MLh7NpAwm.300x300.jpg",
"pub_date_ms": 1579507216184,
"guid_from_rss": "004f03c8-cdf9-4ff5-9d89-b2147f8d55cf",
"title_original": "Star Wars - The Force Awakens",
"listennotes_url": "https://www.listennotes.com/e/ea09b575d07341599d8d5b71f205517b/",
"audio_length_sec": 1694,
"explicit_content": false,
"title_highlighted": "Star Wars - The Force Awakens",
"description_original": "
In this episode of The Rough Cut we close out our study of the final Skywalker trilogy with a look back on the film that helped the dormant franchise make the jump to lightspeed, Episode VII - The Force Awakens.\u00a0 Recorded in Amsterdam in front of a festival audience in 2018, editor Maryann Brandon ACE recounts her work on The Force Awakens just as she was about to begin editing what would come to be known as Episode IX - The Rise of Skywalker.
\u00a0
Go back to the beginning and listen to our podcast with Star Wars and 'Empire' editor, Paul Hirsch.
Hear editor Bob Ducsay talk about cutting The Last Jedi.
Listen to Maryann Brandon talk about her work on The Rise of Skywalker.
Get your hands on the non-linear editor behind the latest Skywalker trilogy,\u00a0 Avid Media Composer!
Subscribe to The Rough Cut for more great interviews with the heroes of the editing room!
\u00a0
\u00a0
",
"description_highlighted": "...Go back to the beginning and listen to our podcast with Star Wars and 'Empire' editor, Paul Hirsch. \nHear editor Bob Ducsay talk about cutting The Last Jedi....",
"transcripts_highlighted": []
},
{
"id": "39746ccfc0d64f62aea8e96641366109",
"rss": "https://www.spreaker.com/show/3200822/episodes/feed",
"link": "https://www.spreaker.com/user/mcucast/star-wars-is-better-than-star-trek?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/39746ccfc0d64f62aea8e96641366109/",
"image": "https://production.listennotes.com/podcasts/marvel-cinematic-universe-podcast-stranded-AlLrRjiNDya-aXR7VuG2z4p.1400x1400.jpg",
"podcast": {
"id": "593c42e343ba44e7b6f8634a946f0b52",
"image": "https://production.listennotes.com/podcasts/marvel-cinematic-universe-podcast-stranded-AlLrRjiNDya-aXR7VuG2z4p.1400x1400.jpg",
"genre_ids": [
68,
99,
122
],
"thumbnail": "https://production.listennotes.com/podcasts/marvel-cinematic-universe-podcast-stranded-F36vtPyanRB-aXR7VuG2z4p.300x300.jpg",
"listen_score": 59,
"title_original": "Marvel Cinematic Universe Podcast",
"listennotes_url": "https://www.listennotes.com/c/593c42e343ba44e7b6f8634a946f0b52/",
"title_highlighted": "Marvel Cinematic Universe Podcast",
"publisher_original": "Stranded Panda",
"publisher_highlighted": "Stranded Panda",
"listen_score_global_rank": "0.5%"
},
"itunes_id": 907175322,
"thumbnail": "https://production.listennotes.com/podcasts/marvel-cinematic-universe-podcast-stranded-F36vtPyanRB-aXR7VuG2z4p.300x300.jpg",
"pub_date_ms": 1575521386425,
"guid_from_rss": "https://api.spreaker.com/episode/20495415",
"title_original": "Star Wars is better than Star Trek",
"listennotes_url": "https://www.listennotes.com/e/39746ccfc0d64f62aea8e96641366109/",
"audio_length_sec": 734,
"explicit_content": true,
"title_highlighted": "Star Wars is better than Star Trek",
"description_original": "A just for fun episode. Time to punish Matt for his sins against baby yoda
This show is part of the Spreaker Prime Network, if you are interested in advertising on this podcast, contact us at https://www.spreaker.com/show/3200822/advertisement",
"description_highlighted": "...A just for fun episode. Time to punish Matt for his sins against baby yodaThis show is part of the Spreaker Prime Network, if you are interested in advertising on this podcast, contact us at https://www.spreaker.com/show/3200822/advertisement...",
"transcripts_highlighted": []
},
{
"id": "42b1898db6a84973b41879618002937b",
"rss": "https://feeds.libsyn.com/125567/rss",
"link": "https://www.vintagerpg.com/2019/12/star-wars-galaxy-guides/?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/42b1898db6a84973b41879618002937b/",
"image": "https://production.listennotes.com/podcasts/the-vintage-rpg-podcast-vintage-rpg-aPsHYKgykCR-eq8uGUY6vXN.1400x1400.jpg",
"podcast": {
"id": "f3094a0b14684300a3d6b69a1063e708",
"image": "https://production.listennotes.com/podcasts/the-vintage-rpg-podcast-vintage-rpg-aPsHYKgykCR-eq8uGUY6vXN.1400x1400.jpg",
"genre_ids": [
83,
85,
82
],
"thumbnail": "https://production.listennotes.com/podcasts/the-vintage-rpg-podcast-vintage-rpg-03VBIC7U68Y-eq8uGUY6vXN.300x300.jpg",
"listen_score": 47,
"title_original": "The Vintage RPG Podcast",
"listennotes_url": "https://www.listennotes.com/c/f3094a0b14684300a3d6b69a1063e708/",
"title_highlighted": "The Vintage RPG Podcast",
"publisher_original": "Vintage RPG",
"publisher_highlighted": "Vintage RPG",
"listen_score_global_rank": "1%"
},
"itunes_id": 1409477830,
"thumbnail": "https://production.listennotes.com/podcasts/the-vintage-rpg-podcast-vintage-rpg-03VBIC7U68Y-eq8uGUY6vXN.300x300.jpg",
"pub_date_ms": 1575867600184,
"guid_from_rss": "9861105d-bf98-4684-871a-5cbe11484159",
"title_original": "Star Wars Galaxy Guides",
"listennotes_url": "https://www.listennotes.com/e/42b1898db6a84973b41879618002937b/",
"audio_length_sec": 1519,
"explicit_content": false,
"title_highlighted": "Star Wars Galaxy Guides",
"description_original": "Because Star Wars is hitting the critical mass point for 2019, we figured we\u2019d add to the fun with an episode that looks at the Galaxy Guides series of sourcebooks for the West End Games Star Wars Role Playing Game. We take a quick tour through each of the twelve volumes and chat about what they added to the RPG experience and how they formed the backbone of the greater Star Wars Expanded Universe.
",
"description_highlighted": "...Because Star Wars is hitting the critical mass point for 2019, we figured we\u2019d add to the fun with an episode that looks at the Galaxy Guides series of sourcebooks for the West End Games Star Wars Role...",
"transcripts_highlighted": []
},
{
"id": "c877bf360bda4c74adea2ba066df6929",
"rss": "https://feeds.megaphone.fm/ROOSTER7199250968",
"link": "https://supercarlinbrothers.libsyn.com/star-wars-theory-the-great-star-wars-ice-cream-conspiracy?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/c877bf360bda4c74adea2ba066df6929/",
"image": "https://production.listennotes.com/podcasts/super-carlin-brothers-j-and-ben-carlin-biwhM2N35Rj-BodDr7iIAR3.1400x1400.jpg",
"podcast": {
"id": "8bdbb906eef04e5d8b391e947998e9af",
"image": "https://production.listennotes.com/podcasts/super-carlin-brothers-j-and-ben-carlin-biwhM2N35Rj-BodDr7iIAR3.1400x1400.jpg",
"genre_ids": [
99,
265,
214,
68
],
"thumbnail": "https://production.listennotes.com/podcasts/super-carlin-brothers-j-and-ben-carlin-EtH8D7G3Qyq-BodDr7iIAR3.300x300.jpg",
"listen_score": 53,
"title_original": "Super Carlin Brothers",
"listennotes_url": "https://www.listennotes.com/c/8bdbb906eef04e5d8b391e947998e9af/",
"title_highlighted": "Super Carlin Brothers",
"publisher_original": "J and Ben Carlin",
"publisher_highlighted": "J and Ben Carlin",
"listen_score_global_rank": "0.5%"
},
"itunes_id": 1479112798,
"thumbnail": "https://production.listennotes.com/podcasts/super-carlin-brothers-j-and-ben-carlin-EtH8D7G3Qyq-BodDr7iIAR3.300x300.jpg",
"pub_date_ms": 1574355600377,
"guid_from_rss": "d6549e8f-3718-4cbc-8fa0-6a5ce7c021b7",
"title_original": "Star Wars Theory: The Great Star Wars Ice Cream Conspiracy",
"listennotes_url": "https://www.listennotes.com/e/c877bf360bda4c74adea2ba066df6929/",
"audio_length_sec": 638,
"explicit_content": false,
"title_highlighted": "Star Wars Theory: The Great Star Wars Ice Cream Conspiracy",
"description_original": "Hurry to http://upstart.com/SCB to find out HOW LOW your Upstart rate is.
\u00a0
The Mandalorian has introduced to us some brand new Star Wars Jargon. In the very first episode we learn about a special metal called Beskar that can be melted down and reinforce the Mandalorian\u2019s armor. We also know that if he can complete his mission he has an ENTIRE CAMONTO of the stuff waiting for him upon delivery of the Young Orphan Darling Asset, aka LIL YODA. But how much is a camtono? And how on TATOOINE could it have anything to do with ICE CREAM!?
",
"description_highlighted": "...The Mandalorian has introduced to us some brand new Star Wars Jargon....",
"transcripts_highlighted": []
},
{
"id": "a47ed9e517ed4767a679ac8499f27565",
"rss": "https://filmthreat.libsyn.com/rss",
"link": "https://filmthreat.libsyn.com/the-star-wars-saga-ranked?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/a47ed9e517ed4767a679ac8499f27565/",
"image": "https://production.listennotes.com/podcasts/film-threat-film-threat-podcast-network-qh2IVg58zR6-cBuD3xXjTAG.1400x1400.jpg",
"podcast": {
"id": "f0a8fa8df3d04ec08fba8d317dafdeb0",
"image": "https://production.listennotes.com/podcasts/film-threat-film-threat-podcast-network-qh2IVg58zR6-cBuD3xXjTAG.1400x1400.jpg",
"genre_ids": [
68
],
"thumbnail": "https://production.listennotes.com/podcasts/film-threat-film-threat-podcast-network-Awkm8hri9Sg-cBuD3xXjTAG.300x300.jpg",
"listen_score": 39,
"title_original": "Film Threat",
"listennotes_url": "https://www.listennotes.com/c/f0a8fa8df3d04ec08fba8d317dafdeb0/",
"title_highlighted": "Film Threat",
"publisher_original": "Film Threat Podcast Network",
"publisher_highlighted": "Film Threat Podcast Network",
"listen_score_global_rank": "2%"
},
"itunes_id": 1202134377,
"thumbnail": "https://production.listennotes.com/podcasts/film-threat-film-threat-podcast-network-Awkm8hri9Sg-cBuD3xXjTAG.300x300.jpg",
"pub_date_ms": 1577019600037,
"guid_from_rss": "7bbf8fdc-22cb-4e9b-b3cb-edc9cd59a71f",
"title_original": "The Star Wars Saga Ranked",
"listennotes_url": "https://www.listennotes.com/e/a47ed9e517ed4767a679ac8499f27565/",
"audio_length_sec": 1512,
"explicit_content": true,
"title_highlighted": "The Star Wars Saga Ranked",
"description_original": "The circle is now complete. The Film Threat staff discusses all nine episodes of the Star Wars saga and ranks the best films, characters and now that we've seen them all, debates which is the best trilogy.",
"description_highlighted": "...The Film Threat staff discusses all nine episodes of the Star Wars saga and ranks the best films, characters and now that we've seen them all, debates which is the best trilogy....",
"transcripts_highlighted": []
},
{
"id": "a5ae21acf75a43538b635cf6b089f0b3",
"rss": "http://feeds.feedburner.com/FramesPerSecondPodcast",
"link": "https://megaphone.link/STU5698215144?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/a5ae21acf75a43538b635cf6b089f0b3/",
"image": "https://production.listennotes.com/podcasts/frames-per-second-studio71-Tk47uwatlcN-J_3zM-VyFvj.1400x1400.jpg",
"podcast": {
"id": "88c28bd52e32422c8f3a71fab45aa77f",
"image": "https://production.listennotes.com/podcasts/frames-per-second-studio71-Tk47uwatlcN-J_3zM-VyFvj.1400x1400.jpg",
"genre_ids": [
68
],
"thumbnail": "https://production.listennotes.com/podcasts/frames-per-second-studio71-nFjw84GgN7c-J_3zM-VyFvj.300x300.jpg",
"listen_score": 49,
"title_original": "Frames Per Second",
"listennotes_url": "https://www.listennotes.com/c/88c28bd52e32422c8f3a71fab45aa77f/",
"title_highlighted": "Frames Per Second",
"publisher_original": "Studio71",
"publisher_highlighted": "Studio71",
"listen_score_global_rank": "0.5%"
},
"itunes_id": 1453571424,
"thumbnail": "https://production.listennotes.com/podcasts/frames-per-second-studio71-nFjw84GgN7c-J_3zM-VyFvj.300x300.jpg",
"pub_date_ms": 1576544400542,
"guid_from_rss": "90b15eb4-1fae-11ea-9f65-17cad885ccc2",
"title_original": "Is Star Wars Overrated?",
"listennotes_url": "https://www.listennotes.com/e/a5ae21acf75a43538b635cf6b089f0b3/",
"audio_length_sec": 778,
"explicit_content": true,
"title_highlighted": "Is Star Wars Overrated?",
"description_original": "In this episode, we discuss whether or not Star Wars is overrated. Let us know your thoughts.
Learn more about your ad choices. Visit megaphone.fm/adchoices
",
"description_highlighted": "...In this episode, we discuss whether or not Star Wars is overrated. Let us know your thoughts. \n \nLearn more about your ad choices. Visit megaphone.fm/adchoices...",
"transcripts_highlighted": []
},
{
"id": "6280a11466dd407e99c66130f203167a",
"rss": "https://snlafterparty.libsyn.com/rss",
"link": "https://snlpodcast.com/episodes/2019/12/24/sample-star-wars-tv-talk-podcast?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/6280a11466dd407e99c66130f203167a/",
"image": "https://production.listennotes.com/podcasts/saturday-night-live-snl-afterparty-john-sEoTraLnKPB-_iOE4lLZ2pD.1400x1400.jpg",
"podcast": {
"id": "09b986e503d4448ab0b625f6233bdd65",
"image": "https://production.listennotes.com/podcasts/saturday-night-live-snl-afterparty-john-sEoTraLnKPB-_iOE4lLZ2pD.1400x1400.jpg",
"genre_ids": [
68,
133,
134
],
"thumbnail": "https://production.listennotes.com/podcasts/saturday-night-live-snl-afterparty-john-wm1CtQVkRfy-_iOE4lLZ2pD.300x300.jpg",
"listen_score": 43,
"title_original": "Saturday Night Live (SNL) Afterparty",
"listennotes_url": "https://www.listennotes.com/c/09b986e503d4448ab0b625f6233bdd65/",
"title_highlighted": "Saturday Night Live (SNL) Afterparty",
"publisher_original": "John Murray / Spry FM",
"publisher_highlighted": "John Murray / Spry FM",
"listen_score_global_rank": "1%"
},
"itunes_id": 1133381225,
"thumbnail": "https://production.listennotes.com/podcasts/saturday-night-live-snl-afterparty-john-wm1CtQVkRfy-_iOE4lLZ2pD.300x300.jpg",
"pub_date_ms": 1576989000072,
"guid_from_rss": "98206b6e-fc6e-45a5-85a6-e54eb4657299",
"title_original": "Sample: Star Wars TV Talk Podcast",
"listennotes_url": "https://www.listennotes.com/e/6280a11466dd407e99c66130f203167a/",
"audio_length_sec": 1690,
"explicit_content": false,
"title_highlighted": "Sample: Star Wars TV Talk Podcast",
"description_original": "While John is hard at work editing our coverage of Eddie Murphy's triumphant return to Studio 8H, please enjoy this excerpt from the Star Wars TV Talk podcast\u2014on which John is regularly featured.
This excerpt is from their discussion of the Disney+ streaming series The Mandalorian chapter 3: \"The Sin\", and contains heavy spoilers.
John's take on all things Star Wars TV, can be heard weekly at starwarstvtalk.com or by subscribing to \"Star Wars TV Talk\" wherever better podcasts can be found.
Get Our Full-Length Episodes on Patreon -
Patreon: Become a patron to access our full-length, ad-free episodes and other exclusive member rewards.
-
Daryl's All Natural Protein Bars: Wholesome, nutritious, great tasting, gluten free, low-carb protein bars.
- Connect with us at:
- snlpodcast.com
- Patreon: snlpodcast
- Twitter: @snlpodcast
- Instagram: snlpodcast
- Facebook: @snlpodcast
- feedback@snlpodcast.com
"description_highlighted": "...John's take on all things Star Wars TV, can be heard weekly at starwarstvtalk.com or by subscribing to \"Star Wars TV Talk\" wherever better podcasts can be found....",
"transcripts_highlighted": []
},
{
"id": "428fc8c5d1dc4ea4bfa7197f50dfcbef",
"rss": "https://anchor.fm/s/2e7b510/podcast/rss",
"link": "https://podcasters.spotify.com/pod/show/drzeuspodcast/episodes/Star-Wars-on-Saturday-Night-e9skm5?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/428fc8c5d1dc4ea4bfa7197f50dfcbef/",
"image": "https://production.listennotes.com/podcasts/dr-zeus-podcast-dr-zeus-ietJoCgElyS-uG3iyp0tI89.1400x1400.jpg",
"podcast": {
"id": "2c48295d6e2643ee837896a03920255a",
"image": "https://production.listennotes.com/podcasts/dr-zeus-podcast-dr-zeus-ietJoCgElyS-uG3iyp0tI89.1400x1400.jpg",
"genre_ids": [
133,
68,
263,
86,
82
],
"thumbnail": "https://production.listennotes.com/podcasts/dr-zeus-podcast-dr-zeus-EgmZh68AS2r-uG3iyp0tI89.300x300.jpg",
"listen_score": 24,
"title_original": "Dr Zeus Podcast ",
"listennotes_url": "https://www.listennotes.com/c/2c48295d6e2643ee837896a03920255a/",
"title_highlighted": "Dr Zeus Podcast ",
"publisher_original": "Dr Zeus ",
"publisher_highlighted": "Dr Zeus ",
"listen_score_global_rank": "10%"
},
"itunes_id": 1360921520,
"thumbnail": "https://production.listennotes.com/podcasts/dr-zeus-podcast-dr-zeus-EgmZh68AS2r-uG3iyp0tI89.300x300.jpg",
"pub_date_ms": 1577587068379,
"guid_from_rss": "9298b06d-5ebe-4b87-bccb-39b6b2377962",
"title_original": "Star Wars on Saturday Night.",
"listennotes_url": "https://www.listennotes.com/e/428fc8c5d1dc4ea4bfa7197f50dfcbef/",
"audio_length_sec": 638,
"explicit_content": false,
"title_highlighted": "Star Wars on Saturday Night.",
"description_original": "Snl wars. \n\n--- \n\nSend in a voice message: https://podcasters.spotify.com/pod/show/drzeuspodcast/message",
"description_highlighted": "...Snl wars. \n\n--- \n\nSend in a voice message: https://podcasters.spotify.com/pod/show/drzeuspodcast/message...",
"transcripts_highlighted": []
},
{
"id": "abdc7a70194c4d6daaa429b7fc2ec5c6",
"rss": "https://triviawithbudds.libsyn.com/rss",
"link": "https://triviawithbudds.libsyn.com/11-trivia-questions-on-modern-star-wars?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/abdc7a70194c4d6daaa429b7fc2ec5c6/",
"image": "https://production.listennotes.com/podcasts/trivia-with-budds-ryan-budds--K74E8aYCBr-odHDeJf8O5Y.1400x1400.jpg",
"podcast": {
"id": "9229022e1b7e46578d8793b1601f983d",
"image": "https://production.listennotes.com/podcasts/trivia-with-budds-ryan-budds--K74E8aYCBr-odHDeJf8O5Y.1400x1400.jpg",
"genre_ids": [
68,
82,
133
],
"thumbnail": "https://production.listennotes.com/podcasts/trivia-with-budds-ryan-budds-YlFUN1Qs_68-odHDeJf8O5Y.300x300.jpg",
"listen_score": 49,
"title_original": "Trivia With Budds",
"listennotes_url": "https://www.listennotes.com/c/9229022e1b7e46578d8793b1601f983d/",
"title_highlighted": "Trivia With Budds",
"publisher_original": "Ryan Budds",
"publisher_highlighted": "Ryan Budds",
"listen_score_global_rank": "0.5%"
},
"itunes_id": 1139115219,
"thumbnail": "https://production.listennotes.com/podcasts/trivia-with-budds-ryan-budds-YlFUN1Qs_68-odHDeJf8O5Y.300x300.jpg",
"pub_date_ms": 1577226086879,
"guid_from_rss": "6ab99079-61c0-4fa3-91f0-28cca5d918b0",
"title_original": "11 Trivia Questions on Modern Star Wars",
"listennotes_url": "https://www.listennotes.com/e/abdc7a70194c4d6daaa429b7fc2ec5c6/",
"audio_length_sec": 646,
"explicit_content": false,
"title_highlighted": "11 Trivia Questions on Modern Star Wars",
"description_original": "
With the release of Rise of Skywalker, I just had to include a round on the most recent Star Wars movies at my live events last week, and now, on the podcast! Grab a wookie and play!
Question of the Day brought to you by Funky Monkey Design of San Dimas, CA:\u00a0 What network originally aired Eureka's castle? Tweet me your answer @ryanbudds or email ryanbudds@gmail.com\u00a0to be eligible for a prize!\u00a0
Yesterday's QotD answer:\u00a0 Terry Trivia Team Name of the Day:\u00a0 Bob's Wahlburgers Funky Monkey Designs:\u00a0 http://fmdesignsinc.com/
Save 25% site wide when using the code BUDDS25 on www.DrewBlank.com! This guy makes the best pop culture art around. Grab some Office, Parks and Rec, Big Lebowski, Bill Murray, and Horror Icon coloring books for the ones you love, along with hundreds of other great creations, all for 1/4th off!\u00a0
THE FIRST TRIVIA QUESTION STARTS AT 03:53 Theme song by www.soundcloud.com/Frawsty
Bed Music:\u00a0 \"Misuse\" Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 4.0 License http://creativecommons.org/licenses/by/4.0/
http://TriviaWithBudds.comhttp://Facebook.com/TriviaWithBudds http://Twitter.com/ryanbudds http://Instagram.com/ryanbudds
Book a party, corporate event, or fundraiser anytime by emailing ryanbudds@gmail.com or use the contact form here: https://www.triviawithbudds.com/contact
SUPPORT THE SHOW:\u00a0www.Patreon.com/TriviaWithBudds
Send me your questions and I'll read them/answer them on the show. Also send me any topics you'd like me to cover on future episodes, anytime! Cheers.\u00a0
SPECIAL THANKS TO ALL MY PATREON SUBSCRIBERS INCLUDING:\u00a0 Chris Adams, Christopher Callahan, Veronica Baker, Manny Majarian, Greg Bristow, Brenda Martinez, Alex DeSmet, Joe Finnie, Manny Cortez, Sarah McKavetz, Simon Time, Mo Martinez, Randy Tatum, Joan Bryce, Katie Christofferson, Denise Leonard, Jen Wojnar, Sarah Guest, Jess Whitener, Kyle Bonnin, Dan Papallo, Robert Casey, Ian Schulze, Casey O'Connor, Marissa Cuthbertson, Kyle Aumer, Taryn Napolitano, Matthew Frost, Katie Smith, Brian Salyer, Megan Acuna, Anna Evans, Jim Fields, Lauren Ward, Greg Heinz, Wreck My Podcast, Douglas French, Erika Cooper, Mark Haas, Sarah Haas, Katelyn Reik, Casey Becker, Paul McLaughlin, Amy Jeppesen, Melissa Chesser, Shaun Delacruz, Feana Nevel, Cody Welter, Paul Doronila, Kathryn Mott, Luke McKay, Ricky Carney, Kyle Hendrickson, Willy Powell, Myke Edwards, Joe Jermolowicz, Joey Mucha, Mona Bray, and Russ Friedewald! YOU GUYS ROCK!\u00a0
","description_highlighted": "...With the release of Rise of Skywalker, I just had to include a round on the most recent Star Wars movies at my live events last week, and now, on the podcast! Grab a wookie and play!...",
"transcripts_highlighted": []
},
{
"id": "9cfb4901a891449aa30553cddfa582f8",
"rss": "http://sw7x7.libsyn.com/rss",
"link": "https://sites.libsyn.com/55931/1945-answering-star-wars-questions-from-star-wars-77-patrons?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/9cfb4901a891449aa30553cddfa582f8/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the-daily-star-wars-podcast-HN08OoDE7pc-AIg3cZVKCsL.1400x1400.jpg",
"podcast": {
"id": "4d3fe717742d4963a85562e9f84d8c79",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the-daily-star-wars-podcast-HN08OoDE7pc-AIg3cZVKCsL.1400x1400.jpg",
"genre_ids": [
86,
68,
82,
100,
101,
160,
138
],
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the-daily-star-wars-podcast-2LryqMj-sGP-AIg3cZVKCsL.300x300.jpg",
"listen_score": 49,
"title_original": "Star Wars 7x7: A Daily Bite-Sized Dose of Star Wars Joy",
"listennotes_url": "https://www.listennotes.com/c/4d3fe717742d4963a85562e9f84d8c79/",
"title_highlighted": "Star Wars 7x7: A Daily Bite-Sized Dose of Star Wars Joy",
"publisher_original": "Star Wars 7x7",
"publisher_highlighted": "Star Wars 7x7",
"listen_score_global_rank": "0.5%"
},
"itunes_id": 896354638,
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the-daily-star-wars-podcast-2LryqMj-sGP-AIg3cZVKCsL.300x300.jpg",
"pub_date_ms": 1572505201403,
"guid_from_rss": "dacf14513dd34eddaace4f1b4bc27f86",
"title_original": "1,945. Answering Star Wars Questions from Star Wars 7\u00d77 Patrons!",
"listennotes_url": "https://www.listennotes.com/e/9cfb4901a891449aa30553cddfa582f8/",
"audio_length_sec": 777,
"explicit_content": false,
"title_highlighted": "Answering Star Wars Questions from Star Wars 7\u00d77 Patrons!",
"description_original": "
Patrons of Star Wars 7x7 at the \"Vader's Fist\" level and above can submit questions for me to answer on the show every month! In this installment, we'll be talking about an aspect of the Millennium Falcon as it appears in The Rise of Skywalker; why Ben Solo may or may not have talked to his Force-ghost grandfather; and favorite Star Wars Halloween costumes. Punch it!
***I'm listener supported! Join the community at http://Patreon.com/sw7x7 to get access to bonus episodes and other insider rewards.***\u00a0
","description_highlighted": "...Patrons of Star Wars 7x7 at the \"Vader's Fist\" level and above can submit questions for me to answer on the show every month!...",
"transcripts_highlighted": []
}
],
"next_offset": 10
}
```
Click to see response schema
```json
{
"type": "object",
"properties": {
"took": {
"type": "number",
"example": 0.093,
"description": "The time it took to fetch these search results. In seconds."
},
"count": {
"type": "integer",
"example": 10,
"description": "The number of search results in this page."
},
"total": {
"type": "integer",
"example": 1989,
"description": "The total number of search results."
},
"results": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "4d82e50314174754a3b603912448e812",
"description": "Episode id, which can be used to further fetch detailed episode metadata via `GET /episodes/{id}`."
},
"rss": {
"type": "string",
"example": "https://sw7x7.libsyn.com/rss",
"description": "RSS url of this podcast. This field is available only in the PRO/ENTERPRISE plan."
},
"link": {
"type": "string",
"example": "https://www.npr.org/2020/01/22/798532179/soleimanis-iran",
"description": "Web link of this episode."
},
"audio": {
"type": "string",
"example": "https://www.listennotes.com/e/p/11b34041e804491b9704d11f283c74de/",
"description": "Audio url of this episode, which can be played directly."
},
"image": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.1400x1400.jpg",
"description": "Image url for this episode.\nIf an episode doesn't have its own image, then this field would be the url of the podcast artwork image.\nIf you are using PRO/ENTERPRISE plan, then it's\na high resolution image (1400x1400). If you are using FREE plan, then it's the same as **thumbnail**,\nlow resolution image (300x300).\n"
},
"podcast": {
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "4d3fe717742d4963a85562e9f84d8c79",
"description": "Podcast id, which can be used to further fetch detailed podcast metadata via `GET /podcasts/{id}`."
},
"image": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.1400x1400.jpg",
"description": "Image url for this podcast's artwork. If you are using PRO/ENTERPRISE plan, then it's\na high resolution image (1400x1400). If you are using FREE plan, then it's the same as **thumbnail**,\nlow resolution image (300x300).\n"
},
"genre_ids": {
"type": "array",
"items": {
"type": "integer",
"description": "Genre ids."
},
"example": [
138,
86,
160,
68,
82,
100,
101
]
},
"thumbnail": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.300x300.jpg",
"description": "Thumbnail image url for this podcast's artwork (300x300)."
},
"listen_score": {
"type": "integer",
"example": 81,
"description": "The estimated popularity score of a podcast compared to all other rss-based public podcasts in the world on a scale from 0 to 100.\nIf the score is not available, it'll be null. Learn more at listennotes.com/listen-score\n"
},
"title_original": {
"type": "string",
"example": "Star Wars 7x7 | Star Wars News, Interviews, and More!",
"description": "Plain text of podcast name."
},
"listennotes_url": {
"type": "string",
"example": "https://www.listennotes.com/c/4d3fe717742d4963a85562e9f84d8c79/",
"description": "The url of this podcast on [ListenNotes.com](https://www.ListenNotes.com)."
},
"title_highlighted": {
"type": "string",
"example": "Star Wars 7x7 | Star Wars News, Interviews, and More!",
"description": "Highlighted segment of podcast name."
},
"publisher_original": {
"type": "string",
"example": "Star Wars Daily, by Allen Voivod",
"description": "Plain text of this podcast's publisher name."
},
"publisher_highlighted": {
"type": "string",
"example": "Star Wars Daily, by Allen Voivod",
"description": "Highlighted segment of this podcast's publisher name."
},
"listen_score_global_rank": {
"type": "string",
"example": "0.5%",
"description": "The estimated popularity ranking of a podcast compared to all other rss-based public podcasts in the world.\nFor example, if the value is 0.5%, then this podcast is one of the top 0.5% most popular shows out of all podcasts globally, ranked by Listen Score.\nIf the ranking is not available, it'll be null. Learn more at listennotes.com/listen-score\n"
}
},
"description": "The podcast that this episode belongs to."
},
"itunes_id": {
"type": "integer",
"example": 896354638,
"description": "iTunes id for this podcast."
},
"thumbnail": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.300x300.jpg",
"description": "Thumbnail image (300x300) url for this episode.\nIf an episode doesn't have its own image, then this field would be the url of the podcast artwork thumbnail image.\n"
},
"pub_date_ms": {
"type": "integer",
"example": 1474873200000,
"description": "Published date for this episode. In millisecond."
},
"title_original": {
"type": "string",
"example": "815: Star Wars 2020 Movie and Beyond!",
"description": "Plain text of this episode' title"
},
"listennotes_url": {
"type": "string",
"example": "https://www.listennotes.com/e/4d82e50314174754a3b603912448e812/",
"description": "The url of this episode on [ListenNotes.com](https://www.ListenNotes.com)."
},
"audio_length_sec": {
"type": "integer",
"example": 567,
"description": "Audio length of this episode. In seconds."
},
"explicit_content": {
"type": "boolean",
"example": false,
"description": "Whether this podcast contains explicit language."
},
"title_highlighted": {
"type": "string",
"example": "815: Star Wars 2020 Movie and Beyond!",
"description": "Highlighted segment of this episode's title"
},
"description_original": {
"type": "string",
"example": "Yeah, Star Wars Celebration Orlando is 32 days away, but what's the scoop on Celebration 2018? Plus, Rebels Day is Saturday, and much more in our update. Punch it! ***We're listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u00e2\u20ac\u2122ll get some fabulous rewards for your pledge.*** Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast. Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!\n",
"description": "Plain text of this episode's description"
},
"description_highlighted": {
"type": "string",
"example": "...Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you'll get some fabulous rewards for your pledge.*** Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to\n",
"description": "Highlighted segment of this episode's description"
},
"transcripts_highlighted": {
"type": "array",
"items": {
"type": "string",
"example": "00:21:27 when Disney bought the Star Wars franchise from George Lucas they had a plan lots of Star Wars movies new Star Wars movies every month another one was just released while I was talking\n"
},
"description": "Up to 2 highlighted segments of the audio transcript of this episode."
}
},
"description": "When **type** is *episode*."
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "4d3fe717742d4963a85562e9f84d8c79",
"description": "Podcast id, which can be used to further fetch detailed podcast metadata via `GET /podcasts/{id}`."
},
"rss": {
"type": "string",
"example": "https://sw7x7.libsyn.com/rss",
"description": "RSS url of this podcast. This field is available only in the PRO/ENTERPRISE plan."
},
"email": {
"type": "string",
"example": "hello@example.com",
"description": "The email of this podcast's producer. This field is available only in the PRO/ENTERPRISE plan."
},
"image": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.1400x1400.jpg",
"description": "Image url for this podcast's artwork. If you are using PRO/ENTERPRISE plan, then it's\na high resolution image (1400x1400). If you are using FREE plan, then it's the same as **thumbnail**,\nlow resolution image (300x300).\n"
},
"website": {
"type": "string",
"example": "http://sw7x7.com/",
"description": "Website url of this podcast."
},
"genre_ids": {
"type": "array",
"items": {
"type": "integer",
"description": "Genre ids."
},
"example": [
138,
86,
160,
68,
82,
100,
101
]
},
"itunes_id": {
"type": "integer",
"example": 896354638,
"description": "iTunes id for this podcast."
},
"thumbnail": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.300x300.jpg",
"description": "Thumbnail image url for this podcast's artwork (300x300)."
},
"listen_score": {
"type": "integer",
"example": 81,
"description": "The estimated popularity score of a podcast compared to all other rss-based public podcasts in the world on a scale from 0 to 100.\nIf the score is not available, it'll be null. Learn more at listennotes.com/listen-score\n"
},
"title_original": {
"type": "string",
"example": "Star Wars 7x7 | Star Wars News, Interviews, and More!",
"description": "Plain text of podcast name."
},
"total_episodes": {
"type": "integer",
"example": 324,
"description": "Total number of episodes in this podcast."
},
"listennotes_url": {
"type": "string",
"example": "https://www.listennotes.com/c/4d3fe717742d4963a85562e9f84d8c79/",
"description": "The url of this podcast on [ListenNotes.com](https://www.ListenNotes.com)."
},
"audio_length_sec": {
"type": "integer",
"example": 1291,
"description": "Average audio length of all episodes of this podcast. In seconds."
},
"explicit_content": {
"type": "boolean",
"example": false,
"description": "Whether this podcast contains explicit language."
},
"latest_episode_id": {
"type": "string",
"example": "d057092e57cc4ced80e0efaa196593d9",
"description": "The id of the most recently published episode of this podcast, which can be used to further fetch detailed episode metadata via `GET /episodes/{id}`."
},
"title_highlighted": {
"type": "string",
"example": "Star Wars 7x7 | Star Wars News, Interviews, and More!",
"description": "Highlighted segment of podcast name."
},
"latest_pub_date_ms": {
"type": "integer",
"example": 1557499770000,
"description": "The published date of the latest episode of this podcast. In milliseconds"
},
"publisher_original": {
"type": "string",
"example": "Star Wars Daily, by Allen Voivod",
"description": "Plain text of this podcast's publisher name."
},
"description_original": {
"type": "string",
"example": "The Star Wars 7x7 Podcast is Rebel-rousing fun for everyday Jedi, between 7 and 14 minutes a day, 7 days a week. Join host Allen Voivod for Star Wars news, history, interviews, trivia, and deep dives into the Star Wars story as told in movies, books, comics, games, cartoons, and more. Subscribe now for your daily dose of Star Wars joy. It's destiny unleashed! #SW7x7\n",
"description": "Plain text of podcast description"
},
"earliest_pub_date_ms": {
"type": "integer",
"example": 1470667902000,
"description": "The published date of the oldest episode of this podcast. In milliseconds"
},
"publisher_highlighted": {
"type": "string",
"example": "Star Wars Daily, by Allen Voivod",
"description": "Highlighted segment of this podcast's publisher name."
},
"update_frequency_hours": {
"type": "integer",
"example": 168,
"description": "How frequently does this podcast release a new episode? In hours. For example, if the value is 166, then it's every 166 hours (or weekly)."
},
"description_highlighted": {
"type": "string",
"example": "...Join host Allen Voivod for Star Wars news, history, interviews, trivia, and deep dives into the Star Wars story as told in movies, books, comics, games, cartoons, and more.\n",
"description": "Highlighted segment of podcast description"
},
"listen_score_global_rank": {
"type": "string",
"example": "0.5%",
"description": "The estimated popularity ranking of a podcast compared to all other rss-based public podcasts in the world.\nFor example, if the value is 0.5%, then this podcast is one of the top 0.5% most popular shows out of all podcasts globally, ranked by Listen Score.\nIf the ranking is not available, it'll be null. Learn more at listennotes.com/listen-score\n"
}
},
"description": "When **type** is *podcast*."
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "Vb017Sx3l8F",
"description": "Curated list id, which can be used to further fetch detailed curated list metadata via `GET /curated_podcasts/{id}`."
},
"total": {
"type": "integer",
"example": 25,
"description": "The total number of podcasts in this curated list."
},
"podcasts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "4d3fe717742d4963a85562e9f84d8c79",
"description": "Podcast id, which can be used to further fetch detailed podcast metadata via `GET /podcasts/{id}`."
},
"image": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.1400x1400.jpg",
"description": "Image url for this podcast's artwork. If you are using PRO/ENTERPRISE plan, then it's\na high resolution image (1400x1400). If you are using FREE plan, then it's the same as **thumbnail**,\nlow resolution image (300x300).\n"
},
"title": {
"type": "string",
"example": "Star Wars 7x7 | Star Wars News, Interviews, and More!",
"description": "Podcast name."
},
"publisher": {
"type": "string",
"example": "Planet Broadcasting",
"description": "Podcast publisher name."
},
"thumbnail": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.300x300.jpg",
"description": "Thumbnail image url for this podcast's artwork (300x300)."
},
"listen_score": {
"type": "integer",
"example": 81,
"description": "The estimated popularity score of a podcast compared to all other rss-based public podcasts in the world on a scale from 0 to 100.\nIf the score is not available, it'll be null. Learn more at listennotes.com/listen-score\n"
},
"listennotes_url": {
"type": "string",
"example": "https://www.listennotes.com/c/4d3fe717742d4963a85562e9f84d8c79/",
"description": "The url of this podcast on [ListenNotes.com](https://www.ListenNotes.com)."
},
"listen_score_global_rank": {
"type": "string",
"example": "0.5%",
"description": "The estimated popularity ranking of a podcast compared to all other rss-based public podcasts in the world.\nFor example, if the value is 0.5%, then this podcast is one of the top 0.5% most popular shows out of all podcasts globally, ranked by Listen Score.\nIf the ranking is not available, it'll be null. Learn more at listennotes.com/listen-score\n"
}
}
},
"description": "Up to 5 podcasts in this curated list."
},
"source_url": {
"type": "string",
"example": "https://parade.com/718913/ashley_johnson/7-bookish-podcasts-for-avid-readers-on-the-go/",
"description": "Url of the source of this curated list."
},
"pub_date_ms": {
"type": "integer",
"example": 1556843484301,
"description": "Published date of this curated list. In milliseconds."
},
"source_domain": {
"type": "string",
"example": "parade.com",
"description": "The domain name of the source of this curated list."
},
"title_original": {
"type": "string",
"example": "What are some good Star Wars Podcast to listen to?",
"description": "Plain text of this curated list's title"
},
"listennotes_url": {
"type": "string",
"example": "https://www.listennotes.com/curated-podcasts/7-bookish-podcasts-for-avid-readers-on-H2r-TCWai8K/",
"description": "The url of this curated list on [ListenNotes.com](https://www.ListenNotes.com)."
},
"title_highlighted": {
"type": "string",
"example": "What are some good Star Wars Podcast to listen to?\n",
"description": "Highlighted segment of this curated list's title"
},
"description_original": {
"type": "string",
"example": "Star Wars fans in Reddit shared their favorite podcasts.",
"description": "Plain text of this curated list's description"
},
"description_highlighted": {
"type": "string",
"example": "...Star Wars fans in Reddit shared their favorite podcasts.",
"description": "Highlighted segment of this curated list's description"
}
},
"description": "When **type** is *curated*."
}
]
},
"description": "A list of search results."
},
"next_offset": {
"type": "integer",
"example": 10,
"description": "Pass this value to the **offset** parameter to do pagination of search results."
}
}
}
```
### Typeahead search
Function Name: **typeahead**
Suggest search terms, podcast genres, and podcasts.
Example:
```python
from listennotes import podcast_api
# If api_key is None, the sdk will connect to a mock server that'll
# return fake data for testing purpose
api_key = 'a6a1f7ae6a4a4cf7a208e5ba********'
client = podcast_api.Client(api_key=api_key)
response = client.typeahead(q='star wars', show_podcasts=1)
print(response.json())
```
See all available parameters on the [API Docs page](https://www.listennotes.com/api/docs/#get-api-v2-typeahead).
Click to see example response
```json
{
"terms": [
"star wars"
],
"genres": [
{
"id": 160,
"name": "Star Wars",
"parent_id": 68
}
],
"podcasts": [
{
"id": "ca3b35271db04291ba56fab8a4f731e4",
"image": "https://production.listennotes.com/podcasts/rebel-force-radio-star-wars-podcast-star-wars-GSQTPOZCqAx-4v5pRaEg1Ub.1400x1400.jpg",
"thumbnail": "https://production.listennotes.com/podcasts/rebel-force-radio-star-wars-podcast-star-wars-Na1ogntxKO_-4v5pRaEg1Ub.300x300.jpg",
"title_original": "Rebel Force Radio: Star Wars Podcast",
"explicit_content": false,
"title_highlighted": "Rebel Force Radio: Star Wars Podcast",
"publisher_original": "Star Wars",
"publisher_highlighted": "Star Wars"
},
{
"id": "8e90b8f0c9eb4c11b13f9dc331ed747c",
"image": "https://production.listennotes.com/podcasts/inside-star-wars-wondery-F8ZBEqObITM-e8ydUYnAOJv.1400x1400.jpg",
"thumbnail": "https://production.listennotes.com/podcasts/inside-star-wars-wondery-2Ep_n06B8ad-e8ydUYnAOJv.300x300.jpg",
"title_original": "Inside Star Wars",
"explicit_content": false,
"title_highlighted": "Inside Star Wars",
"publisher_original": "Wondery",
"publisher_highlighted": "Wondery"
},
{
"id": "e8bdeb557c194bb9a97f8e1835a405b0",
"image": "https://production.listennotes.com/podcasts/star-wars-stuff-podcast-star-wars-N2eYaLJWtk8-4-E8Ab7PQ_B.1400x1400.jpg",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-stuff-podcast-star-wars-TOvDUaL7l3m-4-E8Ab7PQ_B.300x300.jpg",
"title_original": "Star Wars STUFF Podcast",
"explicit_content": false,
"title_highlighted": "Star Wars STUFF Podcast",
"publisher_original": "Star Wars",
"publisher_highlighted": "Star Wars"
},
{
"id": "699701ca2479411f9c0bbf8dd85323e8",
"image": "https://production.listennotes.com/podcasts/star-wars-explained-alex-mollie-MKIbl7dwVTC-zuwl0R2DOjf.1400x1400.jpg",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-explained-alex-mollie-2_yoeSVtXOM-zuwl0R2DOjf.300x300.jpg",
"title_original": "Star Wars Explained",
"explicit_content": false,
"title_highlighted": "Star Wars Explained",
"publisher_original": "Alex & Mollie",
"publisher_highlighted": "Alex & Mollie"
},
{
"id": "46c50b17a1c6474fb77e21f438ccd78d",
"image": "https://production.listennotes.com/podcasts/skytalkers-charlotte-caitlin-star-wars-S7L8tE_nIaZ--hNC10LzS4A.1400x1400.jpg",
"thumbnail": "https://production.listennotes.com/podcasts/skytalkers-charlotte-caitlin-star-wars-DEIoXLeJOM9--hNC10LzS4A.300x300.jpg",
"title_original": "Skytalkers",
"explicit_content": false,
"title_highlighted": "Skytalkers",
"publisher_original": "Star Wars",
"publisher_highlighted": "Star Wars"
}
]
}
```
Click to see response schema
```json
{
"type": "object",
"required": [
"terms"
],
"properties": {
"terms": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"startup sales",
"startup",
"startups",
"star wars"
],
"description": "Search term suggestions."
},
"genres": {
"type": "array",
"items": {
"type": "object",
"example": {
"id": 140,
"name": "Web Design",
"parent_id": 127
},
"properties": {
"id": {
"type": "integer",
"example": 93,
"description": "Genre id"
},
"name": {
"type": "string",
"example": "Business",
"description": "Genre name."
},
"parent_id": {
"type": "integer",
"example": 95,
"description": "Parent genre id."
}
}
},
"description": "Genre suggestions. It'll show up when the **show_genres** parameter is *1*."
},
"podcasts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "4d3fe717742d4963a85562e9f84d8c79",
"description": "Podcast id, which can be used to further fetch detailed podcast metadata via `GET /podcasts/{id}`."
},
"image": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.1400x1400.jpg",
"description": "Image url for this podcast's artwork. If you are using PRO/ENTERPRISE plan, then it's\na high resolution image (1400x1400). If you are using FREE plan, then it's the same as **thumbnail**,\nlow resolution image (300x300).\n"
},
"thumbnail": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.300x300.jpg",
"description": "Thumbnail image url for this podcast's artwork (300x300)."
},
"title_original": {
"type": "string",
"example": "Star Wars 7x7 | Star Wars News, Interviews, and More!",
"description": "Plain text of podcast name."
},
"explicit_content": {
"type": "boolean",
"example": false,
"description": "Whether this podcast contains explicit language."
},
"title_highlighted": {
"type": "string",
"example": "Star Wars 7x7 | Star Wars News, Interviews, and More!",
"description": "Highlighted segment of podcast name."
},
"publisher_original": {
"type": "string",
"example": "Star Wars Daily, by Allen Voivod",
"description": "Plain text of this podcast's publisher name."
},
"publisher_highlighted": {
"type": "string",
"example": "Star Wars Daily, by Allen Voivod",
"description": "Highlighted segment of this podcast's publisher name."
}
}
},
"description": "Podcast suggestions. It'll show up when the **show_podcasts** parameter is 1."
}
}
}
```
### Fetch detailed meta data and episodes for a podcast by id
Function Name: **fetch_podcast_by_id**
Fetch detailed meta data and episodes for a specific podcast (up to 10 episodes each time).
You can use the **next_episode_pub_date** parameter to do pagination and fetch more episodes.
Example:
```python
from listennotes import podcast_api
# If api_key is None, the sdk will connect to a mock server that'll
# return fake data for testing purpose
api_key = 'a6a1f7ae6a4a4cf7a208e5ba********'
client = podcast_api.Client(api_key=api_key)
response = client.fetch_podcast_by_id(id='4d3fe717742d4963a85562e9f84d8c79')
print(response.json())
```
See all available parameters on the [API Docs page](https://www.listennotes.com/api/docs/#get-api-v2-podcasts-id).
Click to see example response
```json
{
"id": "4d3fe717742d4963a85562e9f84d8c79",
"rss": "http://sw7x7.libsyn.com/rss",
"type": "episodic",
"email": "allen@sw7x7.com",
"extra": {
"url1": "",
"url2": "",
"url3": "",
"google_url": "https://play.google.com/music/listen?u=0#/ps/I7gdcrqcmvhfnhh2cyqkcg32tkq",
"spotify_url": "https://open.spotify.com/show/2rQJUP9Y3HxemiW3JHt9WV",
"youtube_url": "https://www.youtube.com/sw7x7",
"linkedin_url": "",
"wechat_handle": "",
"patreon_handle": "sw7x7",
"twitter_handle": "",
"facebook_handle": "sw7x7",
"amazon_music_url": "",
"instagram_handle": ""
},
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the-daily-star-wars-podcast-HN08OoDE7pc-AIg3cZVKCsL.1400x1400.jpg",
"title": "Star Wars 7x7: A Daily Bite-Sized Dose of Star Wars Joy",
"country": "United States",
"website": "https://sw7x7.com?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"episodes": [
{
"id": "4e7c59e10e4640b98f2f3cb1777dbb43",
"link": "https://sites.libsyn.com/55931/864-part-2-of-my-new-conversation-with-bobby-roberts?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/4e7c59e10e4640b98f2f3cb1777dbb43/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the/864-part-2-of-my-new--vDBMTjY_mK-2WVsxtU0f3m.600x315.jpg",
"title": "864: Part 2 of My (New) Conversation With Bobby Roberts",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the/864-part-2-of-my-new-yqjrzNDEXaS-2WVsxtU0f3m.300x157.jpg",
"description": "
The second half of my latest conversation with Bobby Roberts, Podcast Emeritus from Full of Sith and now Star Wars \"Podcast Force Ghost at Large.\" Punch it!
***We\u2019re listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u2019ll get some fabulous rewards for your pledge.***\u00a0
Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast.
Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!
","pub_date_ms": 1479110402345,
"guid_from_rss": "bbada2b3a99054ce93b0eb95dd762b4d",
"listennotes_url": "https://www.listennotes.com/e/4e7c59e10e4640b98f2f3cb1777dbb43/",
"audio_length_sec": 2447,
"explicit_content": false,
"maybe_audio_invalid": false,
"listennotes_edit_url": "https://www.listennotes.com/e/4e7c59e10e4640b98f2f3cb1777dbb43/#edit"
},
{
"id": "9ae0e2e49a9c477191263df90adf7f3e",
"link": "https://sites.libsyn.com/55931/863-a-new-conversation-with-bobby-roberts-part-1?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/9ae0e2e49a9c477191263df90adf7f3e/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the/863-a-new-conversation-with-e_vHo9SM7ft-0YRBTlgiVeU.600x315.jpg",
"title": "863: A (New) Conversation With Bobby Roberts, Part 1",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the/863-a-new-conversation-with-lcQsDS5uvYb-0YRBTlgiVeU.300x157.jpg",
"description": "
An in-depth conversation about the Star Wars \"Story\" movies and so much more, featuring Bobby Roberts, Star Wars \"Podcast Force Ghost at Large.\" Punch it!
***We\u2019re listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u2019ll get some fabulous rewards for your pledge.***\u00a0
Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast.
Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!
","pub_date_ms": 1479024002346,
"guid_from_rss": "2c298fe68246aad30bd5afe0b79fdd76",
"listennotes_url": "https://www.listennotes.com/e/9ae0e2e49a9c477191263df90adf7f3e/",
"audio_length_sec": 2916,
"explicit_content": false,
"maybe_audio_invalid": false,
"listennotes_edit_url": "https://www.listennotes.com/e/9ae0e2e49a9c477191263df90adf7f3e/#edit"
},
{
"id": "98bcfa3fd1b44727913385938788bcc5",
"link": "https://sites.libsyn.com/55931/862-assassin-clone-wars-briefing-season-3-episode-7?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/98bcfa3fd1b44727913385938788bcc5/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the/862-assassin-clone-wars-lP94b2q5iOz-jEcMAdTntzs.600x315.jpg",
"title": "862: \"Assassin\" - Clone Wars Briefing, Season 3, Episode 7",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the/862-assassin-clone-wars-Uh3E0GwOQRX-jEcMAdTntzs.300x157.jpg",
"description": "
The beginnings of the true power of the Force, revealed in \"Assassin,\" season 3, episode 7 of the Star Wars: The Clone Wars cartoon series. Punch it!
***We\u2019re listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u2019ll get some fabulous rewards for your pledge.***\u00a0
Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast.
Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!
","pub_date_ms": 1478937602347,
"guid_from_rss": "6f64d1b37c661bbd066e773ae3b72d5e",
"listennotes_url": "https://www.listennotes.com/e/98bcfa3fd1b44727913385938788bcc5/",
"audio_length_sec": 636,
"explicit_content": false,
"maybe_audio_invalid": false,
"listennotes_edit_url": "https://www.listennotes.com/e/98bcfa3fd1b44727913385938788bcc5/#edit"
},
{
"id": "61d1de72f97e48e887c5d6280d3de384",
"link": "https://sites.libsyn.com/55931/861-rogue-one-international-trailer-breakdown?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/61d1de72f97e48e887c5d6280d3de384/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the/861-rogue-one-international-6rZOEiJHPpx-nGxaRC95V6o.600x315.jpg",
"title": "861: Rogue One International Trailer Breakdown",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the/861-rogue-one-international-AFlEBXPHG6d-nGxaRC95V6o.300x157.jpg",
"description": "
Surprise! An international trailer for Rogue One has dropped, and it includes new scenes, new dialogue, and some heavy foreshadowing about Jyn Erso's fate. Punch it!
***We\u2019re listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u2019ll get some fabulous rewards for your pledge.***\u00a0
Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast.
Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!
","pub_date_ms": 1478851458348,
"guid_from_rss": "10f042cf7346e078e201769b1097d651",
"listennotes_url": "https://www.listennotes.com/e/61d1de72f97e48e887c5d6280d3de384/",
"audio_length_sec": 1082,
"explicit_content": false,
"maybe_audio_invalid": false,
"listennotes_edit_url": "https://www.listennotes.com/e/61d1de72f97e48e887c5d6280d3de384/#edit"
},
{
"id": "53f5d00491134367ac3baf8c75b9a46b",
"link": "https://sites.libsyn.com/55931/860-will-jyn-and-cassian-survive-rogue-one?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/53f5d00491134367ac3baf8c75b9a46b/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the/860-will-jyn-and-cassian-VHAJQ1N57hE-l_3qXNfHAU0.600x315.jpg",
"title": "860: Will Jyn and Cassian Survive Rogue One?",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the/860-will-jyn-and-cassian-k-2Si6HYjTP-l_3qXNfHAU0.300x157.jpg",
"description": "
Today I conclude a two-episode set looking at the odds of survival for major Rogue One characters. Today: Jyn Erso, Cassian Andor, Bodhi Rook, and K-2SO. Punch it!
***We\u2019re listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u2019ll get some fabulous rewards for your pledge.***\u00a0
Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast.
Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!
","pub_date_ms": 1478764802349,
"guid_from_rss": "18062743dbffa4ce293686607ce30af4",
"listennotes_url": "https://www.listennotes.com/e/53f5d00491134367ac3baf8c75b9a46b/",
"audio_length_sec": 651,
"explicit_content": false,
"maybe_audio_invalid": false,
"listennotes_edit_url": "https://www.listennotes.com/e/53f5d00491134367ac3baf8c75b9a46b/#edit"
},
{
"id": "76c00b559f7d4f1c8be3ff1e2d808af9",
"link": "https://sites.libsyn.com/55931/859-the-odds-who-will-survive-rogue-one?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/76c00b559f7d4f1c8be3ff1e2d808af9/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the/859-the-odds-who-will-nM7l1BNPbIa-kprAXUCS8uQ.600x315.jpg",
"title": "859: The Odds: Who Will Survive Rogue One?",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the/859-the-odds-who-will-RlXojiI5Wm6-kprAXUCS8uQ.300x157.jpg",
"description": "
Will Galen Erso, Lyra Erso, Saw Gerrera, and Orson Krennic survive the events of Rogue One: A Star Wars Story? Starting a mini-series to look at the odds... Punch it!
***We\u2019re listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u2019ll get some fabulous rewards for your pledge.***\u00a0
Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast.
Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!
","pub_date_ms": 1478678402350,
"guid_from_rss": "98e4d31b23bc7f48db490effe4d77e73",
"listennotes_url": "https://www.listennotes.com/e/76c00b559f7d4f1c8be3ff1e2d808af9/",
"audio_length_sec": 483,
"explicit_content": false,
"maybe_audio_invalid": false,
"listennotes_edit_url": "https://www.listennotes.com/e/76c00b559f7d4f1c8be3ff1e2d808af9/#edit"
},
{
"id": "62cdfe0b9ef64d1288a975a659dcf442",
"link": "https://sites.libsyn.com/55931/858-together-new-rogue-one-commercial-dialogue?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/62cdfe0b9ef64d1288a975a659dcf442/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the/858-together-new-rogue-one-TsLghBq5enX-WpFSsNUOzcL.600x315.jpg",
"title": "858: \"Together\" - New Rogue One Commercial Dialogue",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the/858-together-new-rogue-one-dJF6XLmfYl4-WpFSsNUOzcL.300x157.jpg",
"description": "
A new Rogue One commercial dropped Sunday, with some new dialogue that hints at the relationship between Jyn Erso, Saw Gerrera, the Rebellion, and the Partisans. Punch it!
***We\u2019re listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u2019ll get some fabulous rewards for your pledge.***\u00a0
Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast.
Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!
","pub_date_ms": 1478592002351,
"guid_from_rss": "c6dd42254e561130bf891f92e944041b",
"listennotes_url": "https://www.listennotes.com/e/62cdfe0b9ef64d1288a975a659dcf442/",
"audio_length_sec": 448,
"explicit_content": false,
"maybe_audio_invalid": false,
"listennotes_edit_url": "https://www.listennotes.com/e/62cdfe0b9ef64d1288a975a659dcf442/#edit"
},
{
"id": "a98c9cb497f04aec9e09cc50ce25ea59",
"link": "https://sites.libsyn.com/55931/857-imperial-supercommandos-star-wars-rebels-season-3-episode-7?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/a98c9cb497f04aec9e09cc50ce25ea59/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the/857-imperial-supercommandos-d0c7L1grbaI-L6bAOKCmyqt.600x315.jpg",
"title": "857: \"Imperial Supercommandos\" - Star Wars Rebels Season 3, Episode 7",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the/857-imperial-supercommandos-OFpdNki02M_-L6bAOKCmyqt.300x157.jpg",
"description": "
\"Imperial Supercommandos\" is Season 3, episode 7 of Star Wars Rebels, referring to Mandalorians serving the Empire. But can Fenn Rau be trusted, either? Punch it!
***We\u2019re listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u2019ll get some fabulous rewards for your pledge.***\u00a0
Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast.
Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!
","pub_date_ms": 1478505602352,
"guid_from_rss": "007883a51d5ddc49b8b8d7fee80cb1ba",
"listennotes_url": "https://www.listennotes.com/e/a98c9cb497f04aec9e09cc50ce25ea59/",
"audio_length_sec": 494,
"explicit_content": false,
"maybe_audio_invalid": false,
"listennotes_edit_url": "https://www.listennotes.com/e/a98c9cb497f04aec9e09cc50ce25ea59/#edit"
},
{
"id": "e055bd1750a745a6adfcb70b935c03b7",
"link": "https://sites.libsyn.com/55931/856-the-academy-clone-wars-briefing-season-3-episode-6?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/e055bd1750a745a6adfcb70b935c03b7/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the/856-the-academy-clone-wars-6-EXfkbp4Sz-l6QpC-2RDTH.600x315.jpg",
"title": "856: \"The Academy\" - Clone Wars Briefing, Season 3, Episode 6",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the/856-the-academy-clone-wars-x6_sqVGe-KS-l6QpC-2RDTH.300x157.jpg",
"description": "
\"The Academy,\" Season 3 Episode 6 of the Clone Wars cartoon series, is a quieter episode that highlights the importance of Mandalore to the Star Wars franchise. Punch it!
***We\u2019re listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u2019ll get some fabulous rewards for your pledge.***\u00a0
Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast.
Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!
","pub_date_ms": 1478415602353,
"guid_from_rss": "f346a6e7575ab41197cacc6648070da2",
"listennotes_url": "https://www.listennotes.com/e/e055bd1750a745a6adfcb70b935c03b7/",
"audio_length_sec": 561,
"explicit_content": false,
"maybe_audio_invalid": false,
"listennotes_edit_url": "https://www.listennotes.com/e/e055bd1750a745a6adfcb70b935c03b7/#edit"
},
{
"id": "d602a45cdb524f3fac1effd79a61f828",
"link": "https://sites.libsyn.com/55931/855-episode-viii-and-han-solo-movie-updates?utm_source=listennotes.com&utm_campaign=Listen+Notes&utm_medium=website",
"audio": "https://www.listennotes.com/e/p/d602a45cdb524f3fac1effd79a61f828/",
"image": "https://production.listennotes.com/podcasts/star-wars-7x7-the/855-episode-viii-and-han-3Wkgr82DBxf-9vz38ko_X2s.600x315.jpg",
"title": "855: Episode VIII and Han Solo Movie Updates",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the/855-episode-viii-and-han-naM8NWQxR19-9vz38ko_X2s.300x157.jpg",
"description": "
Daisy Ridley says wait for Episode VIII for answers about Rey's parents. Bradford Young says the Han Solo movie won't be what you expect. Updates here... Punch it!
***We\u2019re listener supported! Go to http://Patreon.com/sw7x7 to donate to the Star Wars 7x7 podcast, and you\u2019ll get some fabulous rewards for your pledge.***\u00a0
Check out SW7x7.com for full Star Wars 7x7 show notes and links, and to comment on any of the content of this episode! If you like what you've heard, please leave us a rating or review on iTunes or Stitcher, which will also help more people discover this Star Wars podcast.
Don't forget to join the Star Wars 7x7 fun on Facebook at Facebook.com/SW7x7, and follow the breaking news Twitter feed at Twitter.com/SW7x7Podcast. We're also on Pinterest and Instagram as \"SW7x7\" too, and we'd love to connect with you there!
","pub_date_ms": 1478329202354,
"guid_from_rss": "89ac7c92db19f7d06f523eb2c093bde6",
"listennotes_url": "https://www.listennotes.com/e/d602a45cdb524f3fac1effd79a61f828/",
"audio_length_sec": 1103,
"explicit_content": false,
"maybe_audio_invalid": false,
"listennotes_edit_url": "https://www.listennotes.com/e/d602a45cdb524f3fac1effd79a61f828/#edit"
}
],
"language": "English",
"genre_ids": [
86,
67,
68,
82,
100,
101,
160,
138
],
"itunes_id": 896354638,
"publisher": "Star Wars 7x7",
"thumbnail": "https://production.listennotes.com/podcasts/star-wars-7x7-the-daily-star-wars-podcast-2LryqMj-sGP-AIg3cZVKCsL.300x300.jpg",
"is_claimed": false,
"description": "The Star Wars 7x7 Podcast is Rebel-rousing fun for everyday Jedi, generally between 7 and 14 minutes a day, always 7 days a week. Join host Allen Voivod for Star Wars news, history, interviews, trivia, and deep dives into the Star Wars story as told in movies, books, comics, games, cartoons, and more. Follow now for your daily dose of Star Wars joy. It's destiny unleashed! #SW7x7",
"looking_for": {
"guests": false,
"cohosts": false,
"sponsors": false,
"cross_promotion": false
},
"listen_score": 49,
"total_episodes": 3415,
"listennotes_url": "https://www.listennotes.com/c/4d3fe717742d4963a85562e9f84d8c79/",
"audio_length_sec": 589,
"explicit_content": false,
"latest_episode_id": "3c6127f14bb84d988ae37e7d89e631d7",
"latest_pub_date_ms": 1694071800000,
"earliest_pub_date_ms": 1404637200000,
"next_episode_pub_date": 1478329202354,
"update_frequency_hours": 23,
"listen_score_global_rank": "0.5%"
}
```
Click to see response schema
```json
{
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "4d3fe717742d4963a85562e9f84d8c79",
"description": "Podcast id, which can be used to further fetch detailed podcast metadata via `GET /podcasts/{id}`."
},
"rss": {
"type": "string",
"example": "https://sw7x7.libsyn.com/rss",
"description": "RSS url of this podcast. This field is available only in the PRO/ENTERPRISE plan."
},
"type": {
"enum": [
"episodic",
"serial"
],
"type": "string",
"example": "episodic",
"description": "The type of this podcast - episodic or serial."
},
"email": {
"type": "string",
"example": "hello@example.com",
"description": "The email of this podcast's producer. This field is available only in the PRO/ENTERPRISE plan."
},
"extra": {
"type": "object",
"properties": {
"url1": {
"type": "string",
"description": "Url affiliated with this podcast"
},
"url2": {
"type": "string",
"description": "Url affiliated with this podcast"
},
"url3": {
"type": "string",
"description": "Url affiliated with this podcast"
},
"google_url": {
"type": "string",
"example": "https://podcasts.google.com/feed/aHR0cHM6Ly9yc3MuYXJ0MTkuY29tL2pvaG4tc29sb21vbi1yZXBvcnRz",
"description": "Google Podcasts url for this podcast"
},
"spotify_url": {
"type": "string",
"example": "https://open.spotify.com/show/2rQJUP9Y3HxemiW3JHt9WV",
"description": "Spotify url for this podcast"
},
"youtube_url": {
"type": "string",
"example": "https://www.youtube.com/sw7x7",
"description": "YouTube url affiliated with this podcast"
},
"linkedin_url": {
"type": "string",
"description": "LinkedIn url affiliated with this podcast"
},
"wechat_handle": {
"type": "string",
"description": "WeChat username affiliated with this podcast"
},
"patreon_handle": {
"type": "string",
"example": "sw7x7",
"description": "Patreon username affiliated with this podcast"
},
"twitter_handle": {
"type": "string",
"example": "SW7x7podcast",
"description": "Twitter username affiliated with this podcast"
},
"facebook_handle": {
"type": "string",
"example": "sw7x7",
"description": "Facebook username affiliated with this podcast"
},
"amazon_music_url": {
"type": "string",
"example": "https://music.amazon.com/podcasts/6fc6d683-9ef3-4850-9c35-8e8b1a42a147/the-lock-sportscast",
"description": "Amazon Music url for this podcast"
},
"instagram_handle": {
"type": "string",
"example": "sw7x7",
"description": "Instagram username affiliated with this podcast"
}
}
},
"image": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.1400x1400.jpg",
"description": "Image url for this podcast's artwork. If you are using PRO/ENTERPRISE plan, then it's\na high resolution image (1400x1400). If you are using FREE plan, then it's the same as **thumbnail**,\nlow resolution image (300x300).\n"
},
"title": {
"type": "string",
"example": "Star Wars 7x7 | Star Wars News, Interviews, and More!",
"description": "Podcast name."
},
"country": {
"type": "string",
"example": "United States",
"description": "The country where this podcast is produced."
},
"website": {
"type": "string",
"example": "http://sw7x7.com/",
"description": "Website url of this podcast."
},
"episodes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "4d82e50314174754a3b603912448e812",
"description": "Episode id, which can be used to further fetch detailed episode metadata via `GET /episodes/{id}`."
},
"link": {
"type": "string",
"example": "https://www.npr.org/2020/01/22/798532179/soleimanis-iran",
"description": "Web link of this episode."
},
"audio": {
"type": "string",
"example": "https://www.listennotes.com/e/p/11b34041e804491b9704d11f283c74de/",
"description": "Audio url of this episode, which can be played directly."
},
"image": {
"type": "string",
"example": "https://cdn-images-1.listennotes.com/podcasts/exponent-ben-thompson-james-allworth-OaJSjb4xQv3.1400x1400.jpg",
"description": "Image url for this podcast's artwork. If you are using PRO/ENTERPRISE plan, then it's\na high resolution image (1400x1400). If you are using FREE plan, then it's the same as **thumbnail**,\nlow resolution image (300x300)
