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-moviesMake 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