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

  • 200

    Book collection

    Hide response attributes Show response attributes array[object]
    • id integer
    • isbn string | null
    • title string
    • description string
    • author string
    • publicationDate string(date-time)
    • reviews array[string(iri-reference)]
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"
    ]
  }
]