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

NameTypeDescription

filter

string

A term to search for in the book's title and the author's name

Headers

NameTypeDescription

authorization

string

A base64-encoded Basic Authorization string

[
    {
        "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

NameTypeDescription

id

integer

The ID of the book

Headers

NameTypeDescription

authorization

string

A base64-encoded Basic Authorization string

{  
   "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