The MovieInfo API allows you to fetch information about movies based on their titles.
"https://openapi-idk8.onrender.com"
GET `/movieinfo`
: Fetches information about a movie based on its title.GET `https://openapi-idk8.onrender.com/movieinfo?title=Insidious`
{
"Title": "Insidious",
"Year": "2010",
"Rated": "PG-13",
"Released": "01 Apr 2011",
"Runtime": "103 min",
"Genre": "Horror, Mystery, Thriller",
"Director": "James Wan",
"Writer": "Leigh Whannell",
"Actors": "Patrick Wilson, Rose Byrne, Ty Simpkins",
"Plot": "A family looks to prevent evil spirits from trapping their comatose child in a realm called The Further.",
"Language": "English",
"Country": "United States, Canada",
"Awards": "8 wins & 15 nominations",
"Poster": "https://m.media-amazon.com/images/M/MV5BMTYyOTAxMDA0OF5BMl5BanBnXkFtZTcwNzgwNTc1NA@@._V1_SX300.jpg",
"Ratings": [
{
"Source": "Internet Movie Database",
"Value": "6.8/10"
},
{
"Source": "Rotten Tomatoes",
"Value": "67%"
},
{
"Source": "Metacritic",
"Value": "52/100"
}
],
"Metascore": "52",
"imdbRating": "6.8",
"imdbVotes": "337,460",
"imdbID": "tt1591095",
"Type": "movie",
"DVD": "N/A",
"BoxOffice": "$54,009,150",
"Production": "N/A",
"Website": "N/A",
"Response": "True"
}
Title
: The title of the movie.Year
: The release year of the movie.Rated
: The rating of the movie.Released
: The release date of the movie.Runtime
: The duration of the movie.Genre
: The genre of the movie.Director
: The director(s) of the movie.Actors
: The main actors/actresses in the movie.Plot
: A brief summary of the movie plot.Language
: The language(s) of the movie.Country
: The country/countries where the movie was produced.Awards
: Awards/nominations received by the movie.Poster
: URL of the movie poster.Ratings
: Ratings from different sources.Metascore
: Metascore rating of the movie.imdbRating
: IMDb rating of the movie.imdbVotes
: Number of IMDb votes for the movie.imdbID
: IMDb ID of the movie.Type
: Type of the movie (e.g., movie, series).DVD
: Availability of the movie on DVD.BoxOffice
: Box office earnings of the movie.Production
: Production company(ies) of the movie.Website
: Official website of the movie.Response
: API response status (True or False).Here is an example of movie information fetched from the API: