GET /podcasts - Get the list of available podcasts
| Parameter | Parameter Type | Data Type |
|---|---|---|
| api-key | header | string Required |
| Authorization | header | string Required |
invalid HTTP_API_KEYNot authenticated200 - Success401 - Unauthorized actioncurl --request GET \
--url https://api-dev.radiozu.ro/v1/podcasts \
--header 'Authorization: Bearer AUTH_TOKEN' \
--header 'api-key: API_KEY'
An array containing multiple podcasts objects. One podcast object is described by:
id - interest idname - interest name, stringdescription - nullable, stringfeed_url - stringimage - nullable, string{
"data": [
{
"id": 1,
"name": "Fain & Simplu Podcast",
"active": 1,
"description": "Mihai Morar prezintă Fain & Simplu. Podcast pentru minte, trup și suflet.",
"host": "Mihai Morar",
"feed_url": "https:\/\/feeds.buzzsprout.com\/659008.rss",
"image": "https:\/\/cms-podcasts.radiozu.ro\/storage\/ARGqbKsP1geP4VtK5vcYIbiyTGSxUM.jpg"
},
{
"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"
}
]
}