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

Headers

[
    {
        "id": 26723562312,
        "title": "Refactoring: Improving the Design of Existing Code",
        "author":"Martin Fowler"
    },
    {
        "id": 13830487293,
        "title": "Working Effectively with Legacy Code",
        "author":"Michael Feathers"
    }
]

Get Book Details

GET https://bookstore.integrokit.com/books/:id

Returns the details of the book with the given ID.

Path Parameters

Headers

{  
   "id": 26723562312,
   "title": "Refactoring: Improving the Design of Existing Code",
   "author": "Martin Fowler",
   "pages": 448,
   "year": 2018,
   "publisher": "Addison-Wesley Professional",
   "edition": 2,
   "isbn": "978-0134757599",
   "language": "English"
}

Last updated