tags:

views:

190

answers:

4
+1  Q: 

Book search API?

I'm looking for some sort of public API I can use to look up information on books based on title, author, ISBN, etc. I want the users of my application to be able to look these things up in the application.

Do you know of such any such API?

Update: Some other application requirements that I just thought of...I need the ability to pull up an image of the book cover. This application will mostly work with textbooks, so I will also need to pull up recently published textbooks and know the edition.

+3  A: 

http://isbndb.com/docs/api/

or AsinSearch, AuthorSearch, etc using Amazon's web service.

jspcal
+5  A: 

You might want to check out the Google Book Search API

http://code.google.com/apis/books/

edit

In response to your edit: The google book search API includes links to image thumbnails for the books.

Kyle Trauberman
There is also a PHP wrapper for this API in the Zend Framework: http://framework.zend.com/manual/en/zend.gdata.books.html
Andrew
+1  A: 

Open Library API.

Darius Bacon
A: 

There's also an Amazon Search API. You have to sign up as a developer on their Amazon web services site. I think that the Usage Requirements only let you use this API if the sole purpose is for displaying an advertisement and a link to buy the book from Amazon. I could be wrong about this, but this would make it unusable for my purposes.

There is a PHP wrapper for this API by using the Zend Framework Zend_Service_Amazon class.

Andrew