I want to find concerts on TMDB. According to the contribution bible I should be looking for movies with the Music genre, but "Music" can also be added as a modifier to other genres. So how do I limit the (API) query to Music genre only? I can add every other genre to without_genres, but I'd rather not have to worry about other stuff getting in there come the day that TMDB adds a new genre. Is there a way to query genre more precisely, such as "Music only", or "Music required and TV Movie optional"?
Can't find a movie or TV show? Login to create it.
Vil du vurdere eller legge til dette elementet i en liste?
Ikke et medlem?
Svar av Travis Bell
den 28 August 2023 kl. 11:57 AM
Hi @benfishbus, the only way I can think of is to use the combination of
with_genres
andwithout_genres
like you already mentioned.