Retrieves the collection of Book resources.

GET /books

Retrieves the collection of Book resources.

Query parameters

  • page integer

    The collection page number

    Default value is 1.

Responses

GET /books
curl \
 -X GET http://api.example.com/books
Response examples (200)
[
  {
    "id": 42,
    "isbn": "string",
    "title": "string",
    "description": "string",
    "author": "string",
    "publicationDate": "2023-05-04T09:42:00+00:00",
    "reviews": [
      "string"
    ]
  }
]
Response examples (200)
[
  {
    "id": 42,
    "isbn": "string",
    "title": "string",
    "description": "string",
    "author": "string",
    "publicationDate": "2025-05-04T09:42:00Z",
    "reviews": [
      "string"
    ]
  }
]