Get full details about multiple books in a single request.
Parameters
Output
Encoding
application/jsonbooks
array
Required
List of books found. Missing books are omitted.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"books"
],
"properties": {
"books": {
"type": "array",
"items": {
"ref": "org.passingreads.book.defs#statefulBook",
"type": "ref"
},
"description": "List of books found. Missing books are omitted."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"ids"
],
"properties": {
"ids": {
"type": "string",
"description": "Comma-separated list of book IDs"
}
}
},
"description": "Get full details about multiple books in a single request."
}