Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Is there any API to retreive all the information about a movie.

Like we have IMDB[^] website, which contains all the information about all the movies. But I think they dont provide any API to serve the other website.

The other one I found is TMDB API. But I want some other.

So please help me if anyone have any idea. I had searched a lot.

Thanks in advance
Posted
Updated 4-Jul-11 0:29am
v2

Then Google your question!

This is one of many free alternatives, [^]

IMDB provides interfaces but is on paymaent http://www.imdb.com/interfaces[^]

Cheers!
 
Share this answer
 
Comments
nit_singh 4-Jul-11 7:07am    
thanks mario, I found some other links also but all are not free. I want some free one.
Mario Majčica 4-Jul-11 7:08am    
The http://www.imdbapi.com/ is not free?
If you want, you can always programmatically scrap data from the Web site without any API, the same way the interactive user would do via a Web browser.

You need to follow the all the HTTP requests an interactive user would do. Use the class System.Net.HttpWebRequest using Method like "GET" to download a page, "POST" for search requests. Your compile-time type should be System.Net.WebRequest as the actual run-time type is created based on Uri Schema by its factory method Create. For a code sample, see http://msdn.microsoft.com/en-us/library/system.net.webrequest.aspx[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900