I am looking for parameter list or what parameters are available for buzzsprout podcast API?
I looked in documentation on buzzsprout.com for JSON based API buzzsprout team provides. By adding api_token in url listed below (with masked id), I am able to get all my podcasts but problem is to selected last 5,10 etc or pass parameter for filtering data by tags. I tried guessing by passing ?limit=5 or ?tags=Custom but nothing works. These are matching params for buzzsprout implementation which are passed to players JS script which example is this code below(where 9999 is podcast ID)
<div id='buzzsprout-large-player-99999-limit-5'></div><script type='text/javascript' charset='utf-8' src='https://www.buzzsprout.com/99999.js?player=large&limit=5&container_id=buzzsprout-large-player-99999-limit-5'></script>
API documentation requires api_token and this is example call (where xxxxxxxx is appi_token and 9999 podcast ID):
https://www.buzzsprout.com/api/99999/episodes.json?api_token=xxxxxxxxxxxxxxxxxx
So this URL above would return data but all my podcasts data. How do I send request to get JSON data with filter, sort, limit, or tags as iframe/player implementation can deliver? Is this possible at all?