Get Review
Fetch a specific review with ratings breakdown and response.
Reviews
Guest reviews and host responses.
List reviews
GET
/v1/reviewsRequest
curl https://api.repull.dev/v1/reviews \ -H "Authorization: Bearer sk_test_YOUR_KEY" \ -H "X-Workspace-Id: YOUR_WORKSPACE_ID"
Response
{
"data": [
{
"id": "200",
"propertyId": "123",
"reviewerRole": "GUEST",
"publicReview": "Amazing stay! The views were breathtaking.",
"overallRating": 4.5,
"categoryRatings": [{ "category": "cleanliness", "rating": 5.0 }],
"response": null
}
]
}Query Parameters
property_idstringFilter by property
min_ratingnumberMinimum rating filter
Reply to a review
POST
/v1/reviews/:id/replyRequest
curl -X POST https://api.repull.dev/v1/reviews/123/reply \
-H "Authorization: Bearer sk_test_YOUR_KEY" \
-H "X-Workspace-Id: YOUR_WORKSPACE_ID" \
-H "Content-Type: application/json" \
-d '{
"message": "Welcome to your stay!"
}'Response
{ "data": { "id": "200", "response": "Thank you for your kind words!", "updatedAt": "..." } }Body Parameters
messagestringRequiredReply text
AI