get_stay_reviews
Retrieve hotel guest reviews and ratings for specific accommodations to help travelers make informed booking decisions based on previous guest experiences.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| stay_id | Yes | Duffel stay/hotel ID (e.g., acc_0000AWr2VsUNIF1Vl91xg0) | |
| after | No | Pagination cursor: after | |
| before | No | Pagination cursor: before | |
| limit | No | Max reviews to return (1-200) |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"description": "Pagination cursor: after",
"type": "string"
},
"before": {
"description": "Pagination cursor: before",
"type": "string"
},
"limit": {
"description": "Max reviews to return (1-200)",
"maximum": 200,
"minimum": 1,
"type": "integer"
},
"stay_id": {
"description": "Duffel stay/hotel ID (e.g., acc_0000AWr2VsUNIF1Vl91xg0)",
"type": "string"
}
},
"required": [
"stay_id"
],
"type": "object"
}