Recently Google changes almost all their APIs and now I can’t achieve things any longer.
How to get books volume by ISBN?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This request Google Books API using a single required parameter, “q”, which will search for volumes that contain this text string. However, there are special keywords you can specify in the search terms to search in particular fields.
The one you’re looking for is
isbn:which returns results where the text following this keyword is the ISBN number. For instance,isbn:0521609283.You can perform the volume search by sending an HTTP GET request to the following URI:
https://www.googleapis.com/books/v1/volumes?q=isbn:0521609283
[+] more info on how to perform a search through Google Books API