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'];