I'm trying to use the new unpublished Yahoo Movies API, but can't find any documentation, official or unofficial, about it.
Does anyone know if any documentation exists for this?
sample API call: http://new.api.movies.yahoo.com/v2/listMovies?title=Transformers
EDIT: The API can no longer be accessed. I'm not sure what Yahoo's plans are with this API. Any info would help.
Can't really help you with your original question, as all links now seem to be dead!
However, using YQL you might still be able to achieive what you are trying to do.
What's YQL? select * from internet The Yahoo! Query Language (YQL) platform enables developers to query, filter, and combine data across the web. YQL exposes a SQL-like syntax that is both familiar to developers and expressive enough for getting the right data.
There is also a listing of community provided tables that you can make use of which can be found at http://www.datatables.org/
To make use of this, all you have to do is import the community tables in to the online YQL console or follow this handy link here which will give you a list of all tables from datatables.org and access to them from the YQL console.
I've had a quick search through this for tables marked as movies so here are some queries you can try out to get further information! Although most of them are from nyt and require an api key, but yahoo seem to have taken care of that for us - information here and a link to the console with this data imported is here so for the bellow examples, you are probably best using that link.
select * from movies.showtimes
select * from nyt.movies.critics
select * from nyt.movies.reviews where reviewer="VINCENT CANBY"
As I don't know enough about what you want the data for, I don't know if any of this information will be of use, but I'm hoping that it is :]