Show daily rates
const url = 'https://integrations.wink.travel/api/managing-entity/e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18/channel-manager/master-rate/5e8a3b7c-0d4f-4a2b-8c1d-9e6f2a0b4c73?startDate=2026-02-15&endDate=2026-02-28';const options = { method: 'GET', headers: {'Wink-Version': '2.0', Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://integrations.wink.travel/api/managing-entity/e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18/channel-manager/master-rate/5e8a3b7c-0d4f-4a2b-8c1d-9e6f2a0b4c73?startDate=2026-02-15&endDate=2026-02-28' \ --header 'Authorization: Bearer <token>' \ --header 'Wink-Version: 2.0'Returns the room rate plus every daily rate and availability entry for the given property and master rate within the requested startDate-to-endDate range.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Property identifier (UUID)
Example
e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18Master rate identifier (UUID)
Example
5e8a3b7c-0d4f-4a2b-8c1d-9e6f2a0b4c73Query Parameters
Section titled “Query Parameters ”Start date for rate query range (inclusive)
Example
2026-02-15End date for rate query range (inclusive)
Example
2026-02-28Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”OK
object
Master rate details (room type + rate plan)
object
Master rate identifier
Property identifier
Master rate name (room type + rate plan)
Room type identifier
Rate plan identifier
Room type name for display
Rate plan name for display
Minimum occupancy for this room type
Maximum occupancy for this room type
Maximum number of adults allowed in this room type
Maximum number of children allowed in this room type
Number of adults the base rate price is calculated for
Number of children the base rate price is calculated for
Base nightly rate in high-demand period
object
Rate modifier for single occupancy (JSON representation of VariableCharge)
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Rate modifier for extra occupants (JSON representation of VariableCharge)
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Rate modifier for extra children (JSON representation of VariableCharge)
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Daily rates for the queried date range
object
Daily rate identifier
Property identifier
Master rate identifier
Guest room (room type) identifier
Rate plan identifier
Daily rate amount
Currency code for rate amount
Whether this is a master (template) rate
Whether the rate is closed on arrival
Whether the rate is closed on departure
Date for this daily rate
Available quantity/inventory on this date
Minimum occupancy required for this date
Maximum occupancy allowed for this date
Minimum length of stay (in nights) for this date
Maximum length of stay (in nights) for this date
Single occupancy rate modifier (JSON representation of VariableCharge)
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Extra occupant rate modifier (JSON representation of VariableCharge)
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Extra child rate modifier (JSON representation of VariableCharge)
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Start date of the queried range (inclusive)
End date of the queried range (inclusive)
Example
{ "room": "", "rates": "", "startDate": "", "endDate": ""}Bad Request
object
object
Example generated
{ "type": "https://example.com", "title": "example", "status": 1, "detail": "example", "instance": "https://example.com", "properties": { "additionalProperty": "example" }}object
object
object
object
object
object
object
object
Unauthorized
object
object
Forbidden
object
object
Internal Server Error
object
Example generated
{}