Retrieves the collection of Book resources.
GET
/books
curl \
--request GET 'http://api.example.com/books'
Response examples (200)
{
"hydra:member": [
{
"@context": "string",
"@id": "string",
"@type": "string",
"id": 42,
"isbn": "string",
"title": "string",
"description": "string",
"author": "string",
"publicationDate": "2026-05-04T09:42:00Z",
"reviews": [
"string"
]
}
],
"hydra:totalItems": 42,
"hydra:view": {
"@id": "string",
"type": "string",
"hydra:first": "string",
"hydra:last": "string",
"hydra:previous": "string",
"hydra:next": "string"
},
"hydra:search": {
"@type": "string",
"hydra:template": "string",
"hydra:variableRepresentation": "string",
"hydra:mapping": [
{
"@type": "string",
"variable": "string",
"property": "string",
"required": true
}
]
}
}
Response examples (200)
[
{
"id": 42,
"isbn": "string",
"title": "string",
"description": "string",
"author": "string",
"publicationDate": "2026-05-04T09:42:00Z",
"reviews": [
"string"
]
}
]