I am trying to figure out how to search for a book by ISBN using the Google Books API. I need to write a program that searches for an ISBN then prints out the title, author,
Are you using the deprecated data API?
With Books API v1 (from Labs) you could use the query
https://www.googleapis.com/books/v1/volumes?q=isbn:
for example
https://www.googleapis.com/books/v1/volumes?q=isbn:0735619670
to query a book by its ISBN.
You may want to look at Googles example code: BooksSample.java