Skip to main content

Search

POST

/api/v1/generic-api-service/royal/hotel/search

The search endpoint is used to return a list of hotels suitable for a certain date range and number of people in a given destination.

curl --location 'https://test-api.etscore.com/api/v1/generic-api-service/royal/hotel/search' \
--header 'Accept-Language: en-US' \
--header 'X-Currency: EUR' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
"hotelCodes": [
"sxk9hmwc2ty8",
"sxk9jv7y87jw35"
],
"checkIn": "2025-04-09",
"checkOut": "2025-04-11",
"clientNationality": "DE",
"feedId": "5494e857-b13c-45ab-baa6-103aae65f30b",
"rooms": [
{
"adults": 2,
"child": 1,
"childAges": [3]
}
]
}
'