Retrieves the collection of Review resources.
GET
/reviews
curl \
--request GET 'http://api.example.com/reviews'
Response examples (200)
{
"hydra:member": [
{
"@context": "string",
"@id": "string",
"@type": "string",
"id": 42,
"rating": 42,
"body": "string",
"author": "string",
"publicationDate": "2026-05-04T09:42:00Z",
"book": "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,
"rating": 42,
"body": "string",
"author": "string",
"publicationDate": "2026-05-04T09:42:00Z",
"book": "string"
}
]