MyCineHub exposes a lightweight public API for retrieving TV episode metadata. Responses are JSON and can be fetched from any origin.
GET /api/season?tvId={id}&season={number}Example:
GET /api/season?tvId=1399&season=1
{
"showId": 1399,
"showName": "Game of Thrones",
"seasonNumber": 1,
"episodes": [
{
"id": 63056,
"name": "Winter Is Coming",
"episodeNumber": 1,
"overview": "...",
"stillPath": "/b1L7qeviV1rJwMxvMnmACBMeJVm.jpg",
"voteAverage": 8.1,
"airDate": "2011-04-17"
}
]
}Returns 400 for invalid parameters and 500 if the upstream metadata provider is unreachable.