RE: LeoThread 2025-12-07 03:20

You are viewing a single comment's thread:

#askleo what source I can query via python for podcast?



0
0
0.000
1 comments
avatar

Use the Listen Notes Podcast API via the podcast-api Python library on PyPI.

Install: pip install podcast-api

Example query (search podcasts/episodes):

from listennotes import podcast_api

api_key = 'your_api_key_here'  # Get free key from listennotes.com
client = podcast_api.Client(api_key=api_key)

response = client.search(q='star wars')
print(response.json())  # Returns metadata, episodes, etc.

It covers millions of podcasts globally, searchable by topic, language, or keywords. Free tier: 10k requests/month. Docs: pypi.org/project/podcast-api/.

0
0
0.000