GET /episodes - Get a list of podcast episodes
| Parameter | Parameter Type | Data Type |
|---|---|---|
| api-key | header | string Required |
| Authorization | header | string Required |
| filter | query | string, available filters:podcast_id |
| include | query | string available includes: listen |
invalid HTTP_API_KEYNot authenticated200 - Success401 - Unauthorized actioncurl --request GET \
--url 'https://api-dev.radiozu.ro/v1/episodes' \
--header 'Authorization: Bearer AUTH_TOKEN' \
--header 'api-key: API_KEY'
An array containing multiple episodes objects. One episode object is described by:
id - episode idtitle - episode name, stringdescription - nullable, stringepisode_number - nullable, integerduration - episode duration in seconds, integeraudio_url - stringvideo_url - string, nullableimage - nullable, stringpublished_at - nullable, string{
"data": [
{
"id": 89,
"title": "Episod de test",
"episode_number": 1,
"description": "o descriere de test pentru un episod de test\n",
"duration": 6907,
"audio_url": "https:\/\/anchor.fm\/s\/7ea57f84\/podcast\/play\/55124179\/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-6-21%2F77a5b31c-bcbd-25fe-a34a-a993b97c01e3.mp3",
"video_url": null,
"guests": "",
"share_url": "https:\/\/podcasts.radiozu.ro\/episodes\/89",
"image": "https:\/\/cms-podcasts.radiozu.ro\/storage\/4UiiVRS1I7BpCMBkZcX4yHNBGrXtbr.png",
"published_at": "2022-07-21 09:30:08"
}
]
}