Page Summary
-
The document describes how to retrieve a list of public Bookshelf resources for a specified user using the Google Books API.
-
The request uses an HTTP GET method to the specified API endpoint.
-
The request requires a
userIdparameter and optionally accepts asourceparameter. -
The response, if successful, returns a JSON object containing the resource type and a list of Bookshelf resources.
Retrieves a list of public Bookshelf resource for the specified user. Try it now .
More information about user IDs can be found in the section Google Books IDs .
Request
HTTP Request
GET https://www.googleapis.com/books/v1/users/ userId /bookshelves
Parameters
userId
string
source
string
Request Body
Do not supply a request body with this method.
Response
If successful, this method returns a response body with the following structure:
{
"kind" : "books#bookshelves" ,
"items" : [
bookshelf Resource
]
}
| Property Name | Value | Description | Notes |
|---|---|---|---|
kind
|
string
|
Resource type. | |
items[]
|
list
|
A list of bookshelves. |
Try It!
Use the explorer below to call this method on live data and see the response.

