Example: https://api.themoviedb.org/3/search/tv?include_adult=false&language=en-US&page=1
There is a request to search for TV shows, which also includes anime, but the search results intersect TV series and anime. The response has a genres field, perhaps it can be used to filter anime separately, but what are the anime IDs?
Не можете да откриете филм или сериал? Влезте, за да го създадете.
Искате ли да го оцените или добавите към списък?
Нямате профил?
Отговор от ticao2 🇧🇷 pt-BR
на 31 август 2024 в 11:22 AM
Your Search example is for searches using the title.
If you have the title, you don't need anything else.
https://developer.themoviedb.org/reference/search-multi
But if you are going to search without having the title and using the Genre field, then you should use Discover.
https://developer.themoviedb.org/reference/discover-tv
We don't have the Anime Genre.
We have Animation. ID 16.
You can use it in conjunction with the Keyword field.
And most Animes have the keyword anime and its variations.
Отговор от Denchikidze
на 31 август 2024 в 12:09 PM
I'm just trying to use the api for suggestions during search, but I need to differentiate between anime and tv shows. Also I don't have a full title, just a part of the phrase, but apparently filtering by id = 16 is my only option.