I have a list of book ISBN numbers and want to auto poulate the book covers, oublisher and other info automatically from Google Books.
There is a free Google Books API available.
Does anyone know how to do this?
I have a list of book ISBN numbers and want to auto poulate the book covers, oublisher and other info automatically from Google Books.
There is a free Google Books API available.
Does anyone know how to do this?
You should be able to use the Fetch JSON plugin to query the API, and then the JQ Plugin to transform the result.
If you check the above doc links, you’ll find examples and a video guide to using JQ.
Yes it’s possible. I built an app that did this very thing for a teacher who wanted to build a reading log app. It works fairly well!
Hi @Debra_Langley,
Welcome to the community
Just adding a video besides for Darren’s helpful information!
https://books.googleapis.com/books/v1/volumes?q=|||&maxResults=1&orderBy=relevance
JQ Query : .items[].volumeInfo.title
JQ Query : .items[].volumeInfo.authors[0]
JQ Query : .items[].volumeInfo.imageLinks.thumbnail
Thank you
Thanks for all the help will take a look.