Phantom Movies API
  • Introduction
  • Quick Start
  • API Reference
    • ✅Movies
      • ✅Details
      • ✅Latest Movies
      • ✅Trending Movies
      • ✅Top Rated Movies
      • ✅Genre
      • ✅Search
    • Tv
    • Genres
Powered by GitBook
On this page
  • Search Movie
  • Search Tv Series.
  1. API Reference

Tv

Search Movie

Search Tv Series.

GET https://api.phantommovies.com/3/tv/series

Search for a Tv Series.

Query Parameters

Name
Type
Description

accessToken*

String

Your API Key

title*

String

Series title being searched for

{
    title: "Halo",
    cover: "https://www.themoviedb.org/t/p/original/nJUHX3XL1jMkk8honUZnUmudFb9.jpg",
    banner: "https://www.themoviedb.org/t/p/original/1qpUk27LVI9UoTS7S0EixUBj5aR.jpg",
    trailer: "https://youtu.be/WZ2v5eMlcrY",
    description: "Depicting an epic 26th-century conflict between humanity and an alien threat known as the Covenant, the series weaves deeply drawn personal stories with action, adventure and a richly imagined vision of the future.",
    totalSeasons: "1",
    releaseYear: "2022",
    primegenre: "Sci-Fi",
    genres: {
        genre: [
            "Action",
            "Adventure",
            "Sci-Fi",
            "Fantasy"
        ]
    },
    seasons: [],
    statistics: {
        views: 139,
        votes: 0
    },
    url: "https://phantommovies.com/tv/series/Halo"
}
{
    status: "nothing_found",
    message: "No movies found."
}

Search Tv Series using our official library, node:

API.searchTvSeries("title").then((res) => {
	console.log(res);
});
PreviousSearchNextGenres

Last updated 2 years ago