tags:

views:

294

answers:

4

Working on a movie website and would love to find an API that I could use to get information about different movies. I code in PHP but I'm assuming this would probably return XML.

+1  A: 

Quick google search returned this: Internet Video Archive Movie API. It seems to return XML data, so it could work for you.

schnaader
A: 

For getting straight-up information about movies (for instance, basic genre and title information) the Amazon associates data works pretty good. There is the condition that the data be used primarily to drive traffic to Amazon, which is something to keep in mind.

There should be a PHP library already written that you can use: http://aws.amazon.com/associates/

Paul Osborne
+3  A: 

I can recommend themoviedb.org. We have been using their API in an open source movie managing application with great success.

Travis Collins