Page Summary
-
This API retrieves volumes from a specific bookshelf for a given user.
-
The request uses the GET HTTP method and requires the
shelfanduserIdparameters. -
Optional parameters include
maxResults,showPreorders,source, andstartIndex. -
A successful response returns the resource type, total number of volumes, and a list of volumes.
Retrieves volumes in a specific bookshelf for the specified user. Try it now .
Request
HTTP Request
GET https://www.googleapis.com/books/v1/users/ userId /bookshelves/ shelf /volumes
Parameters
shelf
string
userId
string
maxResults
unsigned integer
showPreorders
boolean
source
string
startIndex
unsigned integer
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#volumes" , "totalItems" : integer , "items" : [ volumes Resource ] }
| Property Name | Value | Description | Notes |
|---|---|---|---|
kind
|
string
|
Resource type. | |
totalItems
|
integer
|
Total number of volumes found. This might be greater than the number of volumes returned in this response if results have been paginated. | |
items[]
|
list
|
A list of volumes. |
Try It!
Use the explorer below to call this method on live data and see the response.

