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?
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by ticao2 🇧🇷 pt-BR
on August 31, 2024 at 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.
Reply by Denchikidze
on August 31, 2024 at 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.