Skip to content

Get episodes index

Get the first page of the episodes index.

GET https://api.mediux.io/episodes

  • Follow meta.nextPage to continue.

Response format, pagination and caching.

Status: 200 OK

{
"data": [
{
"id": 1,
"title": "Example",
"year": 2026,
"seasonNumber": 1,
"episodeNumber": 1,
"show": {
"id": 1,
"kind": "show",
"title": "Example Show"
},
"season": {
"id": 1,
"kind": "season",
"title": "Season 1",
"seasonNumber": 1
}
}
],
"meta": {
"page": 1,
"totalPages": 1,
"nextPage": null
}
}