Comment on page
Quick Start
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
The best way to interact with our API is to use one of our official libraries:
Node
# Install via NPM
npm install phantom-movies
To make your first request, send an query request to the movies endpoint with the title of the movie.
get
https://api.phantommovies.com/3/movies
/movie
Search Movie
Take a look at how you might call this method using our official library,
node
:Node
// require ologyyvidss module and set it up with your API key
const PhantomMovies = require("phantom-movies");
const API = new PhantomMovies.API("YOUR_API_KEY");
API.searchMovie("Avatar: The Way of Water").then((res) => {
console.log(res); // Get information on the Movie with the Title Avatar: The Way of Water
});
Last modified 6mo ago