GET /podcasts/{id} - Get podcast details for a single podcast
| Parameter | Parameter Type | Data Type |
|---|---|---|
| api-key | header | string Required |
| Authorization | header | string Required |
| include | query | string available includes: episodes, episodes.listen, subscription, links |
invalid HTTP_API_KEYNot authenticated200 - Success401 - Unauthorized actioncurl --request GET \
--url 'https://api-dev.radiozu.ro/v1/podcasts/1?include=subscription' \
--header 'Authorization: Bearer AUTH_TOKEN' \
--header 'api-key: API_KEY'
A single podcast object. One podcast object is described by:
id - podcast idname - podcast name, stringdescription - nullable, stringfeed_url - stringimage - nullable, stringsubscription - nullable, subscription objectepisodes - nullable, array of episode objects{
"data": {
"id": 2,
"name": "podcast de test",
"active": 1,
"description": "podcast de testpodcast de testpodcast de test",
"host": "RadioZU",
"feed_url": "https:\/\/anchor.fm\/s\/7ea57f84\/podcast\/rss",
"image": "https:\/\/cms-podcasts.radiozu.ro\/storage\/ehpfrAbQ9rP7aNStfOe217V9T437xY.jpg"
}
}