Docs/Channels/Booking.com

Booking.com Reviews

List guest reviews for a Booking.com property and post a public reply. Booking.com allows one host reply per review and does not support host reviews of guests.

GET/v1/channels/booking/reviews

Parameters

property_idstringRequired

Booking.com property id, connected to your workspace.

Scope

  • Scoped to your workspace: a Booking.com property id that is not connected to your workspace returns 404 not_found, the same answer as an id that does not exist.

Example

# List reviews
curl "https://api.repull.dev/v1/channels/booking/reviews?property_id=1234567" \
  -H "Authorization: Bearer sk_live_YOUR_KEY"

# Reply to a review
curl -X POST https://api.repull.dev/v1/channels/booking/reviews \
  -H "Authorization: Bearer sk_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"property_id": "1234567", "review_id": "REVIEW_ID", "response": "Thank you for staying with us!"}'
AI