Search
Search for movies, TV series, people, collections, companies, and keywords across the TMDB catalog.
The SearchAPI provides full-text search across all major TMDB entity types.
All search methods require a query parameter and return paginated results.
import { TMDB } from "@lorenzopant/tmdb";
const tmdb = new TMDB("your-api-key");
// or standalone
import { SearchAPI } from "@lorenzopant/tmdb";
const search = new SearchAPI("your-api-key");Methods
movies()— Search for movies by their original, translated, and alternative titles.collections()— Search for collections by their original, translated, and alternative names.company()— Search for production companies by their original and alternative names.keyword()— Search for keywords by name.person()— Search for people by their name and also known as names.