Hi, I'm trying to find all titles for a specific provider for a specific country.
Lets use Netflix and Indonesia as the example for now.
I'm also using the python wrapper: tmdbv3api.
To find the lists of movies, its easy and I use
netflix_movies_in_indonesia = discover.discover_movies({'with_watch_providers':"8", 'watch_region':"ID"})
and loop through all the pages to retrieve all the movie ids and metadata.
For tv shows I use:
netflix_tvshows_in_indonesia = discover.discover_tv_shows({'with_watch_providers':"8", 'watch_region':"ID"})
However, this only tells me what tv shows are available on Netflix in Indonesia,
I want to find out exactly what episodes for each TV show are available on Netflix in Indonesia.
Is there a way to do this?
Nem találsz egy filmet vagy egy sorozatot? Jelentkezz be és hozd létre.
Want to rate or add this item to a list?
Még nem tag?
Travis Bell válaszolt
Beküldve: 2024. szeptember 25. 18:38
Hi @charlie.tran,
There's a few problems preventing you from getting episode level data here. First, we don't import JustWatch's availability data at the episode level, so we don't actually have that data. Second is the general lack of episode discovery on the API. Our discover API is limited to TV shows and movies only.