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"?
Un film, une émission télévisée ou un artiste est introuvable ? Connectez-vous afin de créer une nouvelle fiche.
Vous souhaitez évaluer ou ajouter cet élément à une liste ?
Pas encore membre ?
Réponse de Travis Bell
le 28 août 2023 à 11h57
Hi @benfishbus, the only way I can think of is to use the combination of
with_genres
andwithout_genres
like you already mentioned.