Hey there, I want to get all seasons of the series without adding the seasons manually I meant I won't be knowing if the series have n number of seasons so, in this case How can I get all the seasons if I don't know how many seasons a series have to add in parameters. In the below url user need to pass the seasons to get in the response
https://api.themoviedb.org/3/tv/114461?api_key=API_KEY&append_to_response=season/1,season/2,season/3,season/4,season/5,season/6
This API is successfully working but What to do if someone don't know how many seasons are there so how many to pass?
찾으시는 영화나 TV 프로그램이 없나요? 로그인 하셔서 직접 만들어주세요.
이 항목을 평가하거나 목록에 추가할까요?
회원이 아닌가요?
robbie3999님의 댓글
8월 28, 2023 at 5:29 오후
Hi @jhhomjhhom, if you call the details endpoint one time:
it returns the parameter "number_of_seasons". It also returns an array called "seasons" that has more information about each season.
jhhomjhhom님의 댓글
8월 28, 2023 at 11:49 오후
@robbie3999, so You're saying I will have to call the empty response of tv detail to get the number_of_seasons and concatenate the received number into
season\1,season\2,\season3
? I think it is not that bad, but making a call only to get number_of_seasons is kinda odd, I think I will have to reconsider the implementation