curl -X GET "https://api.example.com/api/v1/books/findAll?page=0&size=10&author=Tolkien" \ -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
{ "page": [ { "id": "550e8400-e29b-41d4-a716-446655440000", "gender": "Fantasy", "author": "J.R.R. Tolkien", "image": "https://example.com/covers/lotr.jpg", "title": "The Lord of the Rings", "subtitle": "The Fellowship of the Ring", "publisher": "Allen & Unwin", "year": "1954", "pages": 423, "isbn": "978-0-618-00222-1" }, { "id": "650e8400-e29b-41d4-a716-446655440001", "gender": "Fantasy", "author": "J.R.R. Tolkien", "image": "https://example.com/covers/hobbit.jpg", "title": "The Hobbit", "subtitle": "There and Back Again", "publisher": "Allen & Unwin", "year": "1937", "pages": 310, "isbn": "978-0-618-00221-4" } ], "count": 2, "limit": 10, "offset": 0, "total_pages": 1, "total_count": 2, "previous_page": null, "current_page": 1, "next_page": null }
Retrieves a paginated list of books with optional filtering by title, author, and gender. Results are sorted by ID in ascending order.
Authorization: Bearer <your_jwt_token>
Show BookResponse object
size