Is there a Google Image Search API that will return data in XML format?
I know about the AJAX API:
http://code.google.com/apis/ajaxsearch/documentation/
What I am looking for is a way to parse and display images from a Google Image Search query in my own UI.
I could try to parse the HTML results from a search like:
http://images.google.com/images?q=apple
But there is no guarantee that the HTML formatting will not change.
Is there an official non AJAX API for the same (like the book search API)?
Thanks.