Redirect
Smart Feedopen in new window redirects to the booking page of a hotel.
 Redirect
Redirects to a hotel booking page given the booking parameters
 Code sample
GET/redirect
curl -X GET 'https://hotelredirect.com/redirect' \
    -H 'refer: https://google.com' \
    -G \
    -d 'hotelId=client-hotel-id-333' \
    -d 'nights=5' \
    -d 'checkIn=2023-10-16' \
    -d 'countOfAdults=3' \
    -d 'clientId=client-id-123' \
    -d 'language=en' \
    -d 'country=us' \
    -d 'param_utm_content=buffercf3b2' 
1
2
3
4
5
6
7
8
9
10
11
 Success Responses
Status 302
Redirectes to hotel booking page.
 Error Responses
Status 404
If no hotel is found for the provided parameters.