Movie and TV Database API, Scrapes data from themoviedb.org (tmdb), thetvdb.com (tvdb) and omdbapi.com (omdb)
bhutanio/movietvdb is a Laravel package for movie and tv database api, scrapes data from themoviedb.org (tmdb), thetvdb.com (tvdb) and omdbapi.com (omdb).
It currently has 16 GitHub stars and 755 downloads on Packagist.
Install it with composer require bhutanio/movietvdb.
Discover more Laravel packages by bhutanio
or browse all Laravel packages to compare alternatives.
Last updated
$client = new \Bhutanio\Movietvdb\MovieScrapper('TMDB_API_KEY', 'TVDB_API_KEY', 'OMDB_API_KEY');
// Get Movie Information by IMDB ID
$movie = $client->scrape('movie', 'tt0120737');
// Get Movie Information by TheMovieDB ID
$movie = $client->scrape('movie', null, '120');
// Get TV Information by IMDB ID
$tv = $client->scrape('tv', 'tt0944947');
// Get Person information by TheMovieDB's Person ID
$person = $client->person('1327');