Booking.com Charges & Fees
Get and set property charges — cleaning fees, resort fees, and other charges on Booking.com.
GET
/v1/channels/booking/chargesParameters
property_idstringRequiredBooking.com property ID
Example
# Get charges
curl "https://api.repull.dev/v1/channels/booking/charges?property_id=123" \
-H "Authorization: Bearer sk_test_YOUR_KEY"
# Set charges
curl -X PUT https://api.repull.dev/v1/channels/booking/charges \
-H "Authorization: Bearer sk_test_YOUR_KEY" \
-d '{"property_id": "123", "charges": [{"type": "cleaning_fee", "amount": 75}]}'AI