I could get popular, now playing movies from TMDB. I wanna get the Horror movies. If there are any API URL and solution, let me know, please
https://api.themoviedb.org/3/movie/popular
https://api.themoviedb.org/3/movie/now_playing
https://api.themoviedb.org/3/genre/movie/list
I got popular movies like this
$popularMovies = Http::withToken(config('services.tmdb.token'))
->get('https://api.themoviedb.org/3/movie/popular')
->json()['results'];
One can also try these steps
To get list of genres-
https://api.themoviedb.org/3/genre/movie/list
To get movies for a particular genre
https://api.themoviedb.org/3/list/{GENRE_ID}
Ex - https://api.themoviedb.org/3/list/27
since, 27 is the genre id for Horror