Google Books API

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.

2 Likes

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 :partying_face:

Just adding a video besides for Darren’s helpful information!

Video

Google Books - Glide.mp4 - Google Drive

Other Details
  • URL Column

https://books.googleapis.com/books/v1/volumes?q=|||&maxResults=1&orderBy=relevance

image

  • Fetch URL Column

image

  • Book Name Column

JQ Query : .items[].volumeInfo.title

image

  • Author Name

JQ Query : .items[].volumeInfo.authors[0]

image

  • Image

JQ Query : .items[].volumeInfo.imageLinks.thumbnail

image

Thank you

3 Likes

Thanks for all the help will take a look.