Tv

Search Movie

Search Tv Series.

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

Search for a Tv Series.

Query Parameters

NameTypeDescription

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"
}

Search Tv Series using our official library, node:

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

Last updated