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?
Kan du ikke finde en film eller TV-serie? Log in og opret den.
Want to rate or add this item to a list?
Ikke medlem?
Svar af robbie3999
d. 28 august 2023 kl. 5:29 PM
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.
Svar af jhhomjhhom
d. 28 august 2023 kl. 11:49 PM
@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