What's the best web image search API? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T21:43:37Z http://stackoverflow.com/feeds/question/533857 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/533857/whats-the-best-web-image-search-api 0 What's the best web image search API? Parand 2009-02-10T19:45:24Z 2009-04-03T01:49:50Z <p>What's the best image search API for general image search (eg. find pictures of potatoes, paris hilton, or scarface), available for remote invocation from a server (ie. not in-browser javascript)? </p> <ul> <li>The <a href="http://developer.yahoo.com/search/image/V1/imageSearch.html" rel="nofollow">Yahoo API</a> is nicely setup and well documented, is easy to use, and includes image thumbnails. This looks like the best candidate so far. The only problem I'm running into is many of the images in the results are no longer on the web.</li> <li>The <a href="http://code.google.com/apis/ajaxsearch/documentation/#fonje" rel="nofollow">Google API</a> is mostly oriented for invocation within the browser. The JSON version doesn't include thumbnails. Not sure how the quality of results compare to Yahoo.</li> <li>The <a href="http://www.flickr.com/services/api/" rel="nofollow">Flickr API</a> is great and the results are very likely not to be broken. However, it's not a general search API - it only searches flickr images, so it'll miss most movie posters, etc.</li> </ul> <p>Are there other image search APIs I should be looking at? Anyone know the relative quality of Yahoo vs. Google image search results?</p> http://stackoverflow.com/questions/533857/whats-the-best-web-image-search-api/594010#594010 1 Answer by sblom for What's the best web image search API? sblom 2009-02-27T08:49:07Z 2009-02-27T08:49:07Z <p><a href="http://search.live.com" rel="nofollow">Live Search</a> also has an <a href="http://msdn.microsoft.com/en-us/library/dd250942.aspx" rel="nofollow">image search API</a>, and their relevance usually measures similar to Google and better than Yahoo.</p> <p>You'll have to first get an API key from the <a href="http://search.live.com/developers/default.aspx" rel="nofollow">Search Developer Center</a>, and then you'll be able to run queries such as <a href="http://api.search.live.net/json.aspx?AppId=YOUR%5FAPPID&amp;Query=xbox%20site:microsoft.com&amp;Sources=Image&amp;Version=2.0&amp;Market=en-us&amp;Adult=Moderate&amp;Image.Count=10&amp;Image.Offset=0" rel="nofollow">this one that returns JSON</a>, or <a href="http://api.search.live.net/xml.aspx?AppId=YOUR%5FAPPID&amp;Query=xbox%20site:microsoft.com&amp;Sources=Image&amp;Version=2.0&amp;Market=en-us&amp;Adult=Moderate&amp;Image.Count=10&amp;Image.Offset=0" rel="nofollow">this one that returns XML</a>.</p> http://stackoverflow.com/questions/533857/whats-the-best-web-image-search-api/712288#712288 1 Answer by Parand for What's the best web image search API? Parand 2009-04-03T01:49:50Z 2009-04-03T01:49:50Z <p>To close this off - I ended up going with Yahoo's API, later found out how to get thumbnails from Google's API. </p> <p>A few points on each:</p> <ul> <li>Yahoo's API is clean, well documented, and easy to use</li> <li>The quality of the results seems pretty even, although Google's seems slightly better. Or maybe that's just branding coloring my perception.</li> <li>Google's API seems to only allow 'small' or 'big' return sizes, which return 4 and 8 results respectively. This is too few for my needs; I'd like at least 20 for each query.</li> </ul>