For the complete documentation index, see llms.txt. This page is also available as Markdown.

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:

# 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.

Search Movie

GET https://api.phantommovies.com/3/movies/movie

Search for a movie title.

Query Parameters

Name
Type
Description

accessToken*

String

Your API Key

title*

String

The title of the movie being searched

Take a look at how you might call this method using our official library, node:

Last updated