The Bookstore API
Integromat's mock bookstore API can be found at https://bookstore.integrokit.com
List Books
GET
https://bookstore.integrokit.com/books
Returns a list of all the books, optionally matching the filter.
Query Parameters
Name | Type | Description |
---|---|---|
filter | string | A term to search for in the book's title and the author's name |
Headers
Name | Type | Description |
---|---|---|
authorization | string | A base64-encoded Basic Authorization string |
Get Book Details
GET
https://bookstore.integrokit.com/books/:id
Returns the details of the book with the given ID.
Path Parameters
Name | Type | Description |
---|---|---|
id | integer | The ID of the book |
Headers
Name | Type | Description |
---|---|---|
authorization | string | A base64-encoded Basic Authorization string |
Last updated