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)?

  • The Yahoo API 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.
  • The Google API 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.
  • The Flickr API 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.

Are there other image search APIs I should be looking at? Anyone know the relative quality of Yahoo vs. Google image search results?

link|improve this question

70% accept rate
2  
Google's Image Search API is deprecated. See post here. – a paid nerd Sep 12 '11 at 22:15
feedback

5 Answers

Live Search also has an image search API, and their relevance usually measures similar to Google and better than Yahoo.

You'll have to first get an API key from the Search Developer Center, and then you'll be able to run queries such as this one that returns JSON, or this one that returns XML.

link|improve this answer
MS have announced that they are moving image search to a paid model and will charge around $40 per month – Don Apr 12 at 17:03
feedback
up vote 2 down vote accepted

To close this off - I ended up going with Yahoo's API, later found out how to get thumbnails from Google's API.

A few points on each:

  • Yahoo's API is clean, well documented, and easy to use
  • The quality of the results seems pretty even, although Google's seems slightly better. Or maybe that's just branding coloring my perception.
  • 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.
link|improve this answer
2  
The Yahoo Image Search API is going to be shut-down (or already is offline). – Florian May 26 '11 at 22:00
They are shutting it down by end of 2011. – PJK Jun 4 '11 at 12:15
feedback

I've tried Google and Bing for this task and, to my surprise, the latter proved itself much better:

  • with Bing, you can request for the image source type and the answer will be specific. You'll not only get the URL but stuff like title, dimensions, file size, file type etc. As for Google, it always gives you some kind of a browser oriented result (you can get the image url but not much more)
  • unlimited searches (Google limits the free access to 100 queries/day)
  • easily used for a quick search, you just setup everything in the query string (whereas with Google you need to go through an extra-step of configuring a "custom search engine")
link|improve this answer
Google's search (for images at least) appears to no longer be supported, you have to use the Custom Search API, which requires you to specify URLS to be searches. WTH? The build their business off trolling other peoples sites to build their indexes, but woe be unto you if you dare troll their site? Bing's search seems to have it right, at least for now. – drventure Apr 24 at 2:35
Also, from what I can tell, Yahoo's image search is essentially BING. Looks like Yahoo just licenses the Bing results. – drventure Apr 24 at 2:36
feedback

While the stand alone Google Image search API is deprecated, the Google Custom Search API now provides image search. You get 100 queries per day for free but are charged past that.

From the Google Developers overview:

With this API, you can use RESTful requests to get either web search or image search results in JSON or Atom format.

link|improve this answer
feedback

Both google and yahoo image search api's are deprecated now

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.