Base URL: /, Version: 1.0.0
Bookshelf RESTful API
| Path | Operation | Description |
|---|---|---|
| /books | POST |
Finds Books by part of its title or description. |
You can find all books not using 'q' (query param) or filter some results using a 'q' param on the request.
| q | Query parameter to find a book |
query | string |
application/json
successful operation
{
"bookShelf": [
{
"authors": [
"authors",
"authors"
],
"description": "description",
"instock": true,
"isbn": "isbn",
"pages": 0,
"published": "2000-01-23T04:56:07.000+00:00",
"publisher": "publisher",
"subtitle": "subtitle",
"title": "title"
},
{
"authors": [
"authors",
"authors"
],
"description": "description",
"instock": true,
"isbn": "isbn",
"pages": 0,
"published": "2000-01-23T04:56:07.000+00:00",
"publisher": "publisher",
"subtitle": "subtitle",
"title": "title"
}
]
}
{
"authors": [
"authors",
"authors"
],
"description": "description",
"instock": true,
"isbn": "isbn",
"pages": 0,
"published": "2000-01-23T04:56:07.000+00:00",
"publisher": "publisher",
"subtitle": "subtitle",
"title": "title"
}