How to get books of searched category in Google Books API?
Asked Answered
U

1

6

I am using Google Books API in my Angular project. I have list of different static categories of the Books. On click of particular category, I want to get books of the searched category from Google Books API. There is no API available in Google Books for this. Suggest me if there is any!

Right now i am using Google Books Search API for this purpose, but the search result is not the same as it should be for category search. Suggest me alternate ways if any!

Unrivaled answered 18/9, 2017 at 11:9 Comment(0)
K
11

You can use the subject keyword in your query to return results of that category.

Example:

https://www.googleapis.com/books/v1/volumes?q=subject:fiction

Kensell answered 21/9, 2017 at 7:31 Comment(3)
Thanks @Saurabh Thorat , i will definitely try this!Unrivaled
This is also not working properly! Not giving exact output.Unrivaled
put the subject in quotes: subject:"Fiction"Granulate

© 2022 - 2024 — McMap. All rights reserved.