Get a review
Reviews · GET /v1/reviews/:id
Get a review
GET
/v1/reviews/:idRequest
curl https://api.repull.dev/v1/reviews/321 \ -H "Authorization: Bearer $REPULL_API_KEY"
Response
{
"id": "123",
"externalId": "123",
"platform": "booking",
"listingId": "123",
"reservationId": "123",
"reservationConfirmationCode": "Example text",
"guestId": "123",
"guestName": "Example",
"guestAvatar": null,
"reviewerRole": "Example text",
"rating": 0,
"categories": [
{
"category": "facilities",
"rating": 0,
"comment": null
}
],
"publicReview": "Example text",
"privateFeedback": null,
"isRevieweeRecommended": null,
"response": null,
"submittedAt": "Example text",
"updatedAt": "Example text",
"expiresAt": null,
"hidden": false,
"language": null,
"providerPropertyId": "123"
}Captured from a real response. Regenerated on every release, and CI fails if this shape stops matching the API.
AI