Get markers for a list
const url = 'https://api.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/studio/map/markers/LIST/9b7e4c3a-1f6d-4e8a-b2f9-5d3c0a8e7b61?displayCurrency=USD';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://api.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/studio/map/markers/LIST/9b7e4c3a-1f6d-4e8a-b2f9-5d3c0a8e7b61?displayCurrency=USD' \ --header 'Authorization: Bearer <token>' \ --header 'Wink-Version: 2.0'Retrieve all inventory markers for a curated list or dynamic search, priced in the requested currency.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”UUID of the managing entity that owns the list.
Example
d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69UUID of the curated list or dynamic search.
Example
9b7e4c3a-1f6d-4e8a-b2f9-5d3c0a8e7b61Type of list: LIST (curated) or SEARCH (dynamic filter).
Example
LISTQuery Parameters
Section titled “Query Parameters ”ISO 4217 currency code for pricing display.
Example
USDHeader Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”OK
Represents a single inventory item displayed as a marker on a map
object
Unique identifier of the channel inventory or list item represented by this marker
Geographic location coordinates as a GeoJSON Point (longitude, latitude)
object
UUID of the supplier (hotel or property) owning this inventory
Display name of the supplier property
UUID of the specific inventory item (e.g., room type or add-on)
Classification of the inventory (e.g., GUEST_ROOM, ADD_ON, RESTAURANT, ACTIVITY)
Human-friendly name of the inventory item
Lowest available price for this inventory in the user’s requested currency
object
Example
[ null]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
{}