Comment on page

Quick Start

Get your API key

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate a new API key in your user dashboard at anytime

Install the library

The best way to interact with our API is to use one of our official libraries:
Node
# Install via NPM
npm install phantom-movies
Tip: Join our Discord Server for updates & new features.

Make your first request

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
});